Package apple.security.enums
Class SSLClientCertificateState
- java.lang.Object
-
- apple.security.enums.SSLClientCertificateState
-
public final class SSLClientCertificateState extends java.lang.ObjectStatus of client certificate exchange (which is optional for both server and client).
-
-
Field Summary
Fields Modifier and Type Field Description static intNoneServer hasn't asked for a cert.static intRejectedClient sent a cert but failed validation.static intRequestedServer has asked for a cert, but client didn't send it.static intSentServer side: We asked for a cert, client sent one, we validated it OK.
-
-
-
Field Detail
-
None
public static final int None
Server hasn't asked for a cert. Client hasn't sent one.- See Also:
- Constant Field Values
-
Requested
public static final int Requested
Server has asked for a cert, but client didn't send it.- See Also:
- Constant Field Values
-
Sent
public static final int Sent
Server side: We asked for a cert, client sent one, we validated it OK. App can inspect the cert via SSLCopyPeerCertificates(). Client side: server asked for one, we sent it.- See Also:
- Constant Field Values
-
Rejected
public static final int Rejected
Client sent a cert but failed validation. Server side only. Server app can inspect the cert via SSLCopyPeerCertificates().- See Also:
- Constant Field Values
-
-