- Certificate - Class in java.security.cert
-
Abstract class for managing a variety of identity certificates.
- Certificate(String) - Constructor for class java.security.cert.Certificate
-
Creates a certificate of the specified type.
- CertificateException - Exception in java.security.cert
-
This exception indicates one of a variety of certificate problems.
- CertificateException() - Constructor for exception java.security.cert.CertificateException
-
Constructs a certificate exception with no detail message.
- CertificateException(String) - Constructor for exception java.security.cert.CertificateException
-
Constructs a certificate exception with the given detail
message.
- CertificateException(String, Throwable) - Constructor for exception java.security.cert.CertificateException
-
Creates a CertificateException
with the specified
detail message and cause.
- CertificateException(Throwable) - Constructor for exception java.security.cert.CertificateException
-
Creates a CertificateException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- CertificateFactory - Class in java.security.cert
-
This class defines the functionality of a certificate factory, which is
used to generate certificate, certification path (CertPath
)
and certificate revocation list (CRL) objects from their encodings.
- CertificateFactory() - Constructor for class java.security.cert.CertificateFactory
-
- CertificateFactorySpi - Class in java.security.cert
-
This class defines the Service Provider Interface (SPI)
for the CertificateFactory
class.
- CertificateFactorySpi() - Constructor for class java.security.cert.CertificateFactorySpi
-
- containsAlias(String) - Method in class java.security.KeyStore
-
Checks if the given alias exists in this keystore.
- createSocket() - Method in class javax.net.SocketFactory
-
Creates an unconnected socket.
- createSocket(String, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified remote host
at the specified remote port.
- createSocket(String, int, InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified remote host
on the specified remote port.
- createSocket(InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified port number
at the specified address.
- createSocket(InetAddress, int, InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connect it to the specified remote address
on the specified remote port.
- createSocket(Socket, String, int, boolean) - Method in class javax.net.ssl.SSLSocketFactory
-
Returns a socket layered over an existing socket connected to the named
host, at the given port.
- createSocket(Socket, InputStream, boolean) - Method in class javax.net.ssl.SSLSocketFactory
-
Creates a server mode Socket
layered over an existing connected
socket, and is able to read data which has already been consumed/removed
from the Socket
's underlying InputStream
.