Uses of Interface
java.security.PublicKey
Package
Description
Provides the classes and interfaces for the security framework.
Provides classes and interfaces for parsing and managing
certificates, certificate revocation lists (CRLs), and
certification paths.
Provides interfaces for generating RSA (Rivest, Shamir and
Adleman AsymmetricCipher algorithm)
keys as defined in the RSA Laboratory Technical Note
PKCS#1, and DSA (Digital Signature
Algorithm) keys as defined in NIST's FIPS-186.
Provides interfaces for Diffie-Hellman keys as defined in RSA
Laboratories' PKCS #3.
Provides classes for public key certificates.
Classes for parsing and processing
KeyInfo
elements and structures.-
Uses of PublicKey in java.security
Modifier and TypeMethodDescriptionprotected abstract PublicKey
KeyFactorySpi.engineGeneratePublic
(KeySpec keySpec) Generates a public key object from the provided key specification (key material).final PublicKey
KeyFactory.generatePublic
(KeySpec keySpec) Generates a public key object from the provided key specification (key material).KeyPair.getPublic()
Returns a reference to the public key component of this key pair.Certificate.getPublicKey()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the key of the principal-key pair being guaranteed by the guarantor.Identity.getPublicKey()
Deprecated, for removal: This API element is subject to removal in a future version.Returns this identity's public key.Modifier and TypeMethodDescriptionprotected abstract void
SignatureSpi.engineInitVerify
(PublicKey publicKey) Initializes this signature object with the specified public key for verification operations.abstract Identity
IdentityScope.getIdentity
(PublicKey key) Deprecated, for removal: This API element is subject to removal in a future version.Retrieves the identity with the specified public key.final void
Signature.initVerify
(PublicKey publicKey) Initializes this object for verification.void
Identity.setPublicKey
(PublicKey key) Deprecated, for removal: This API element is subject to removal in a future version.Sets this identity's public key.boolean
Verifies that the signature in this SignedObject is the valid signature for the object stored inside, with the given verification key, using the designated verification engine.ModifierConstructorDescriptionKeyPair
(PublicKey publicKey, PrivateKey privateKey) Constructs a key pair from the given public key and private key. -
Uses of PublicKey in java.security.cert
Modifier and TypeMethodDescriptionfinal PublicKey
TrustAnchor.getCAPublicKey()
Returns the public key of the most-trusted CA.abstract PublicKey
Certificate.getPublicKey()
Gets the public key from this certificate.PKIXCertPathValidatorResult.getPublicKey()
Returns the public key of the subject (target) of the certification path, including any inherited public key parameters if applicable.X509CertSelector.getSubjectPublicKey()
Returns the subjectPublicKey criterion.Modifier and TypeMethodDescriptionvoid
X509CertSelector.setSubjectPublicKey
(PublicKey key) Sets the subjectPublicKey criterion.abstract void
Verifies that this certificate was signed using the private key that corresponds to the specified public key.abstract void
Verifies that this certificate was signed using the private key that corresponds to the specified public key.void
Verifies that this certificate was signed using the private key that corresponds to the specified public key.void
Verifies that this certificate was signed using the private key that corresponds to the specified public key.abstract void
Verifies that this CRL was signed using the private key that corresponds to the given public key.abstract void
Verifies that this CRL was signed using the private key that corresponds to the given public key.void
Verifies that this CRL was signed using the private key that corresponds to the given public key.ModifierConstructorDescriptionPKIXCertPathBuilderResult
(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) Creates an instance ofPKIXCertPathBuilderResult
containing the specified parameters.PKIXCertPathValidatorResult
(TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) Creates an instance ofPKIXCertPathValidatorResult
containing the specified parameters.TrustAnchor
(String caName, PublicKey pubKey, byte[] nameConstraints) Creates an instance ofTrustAnchor
where the most-trusted CA is specified as a distinguished name and public key.TrustAnchor
(X500Principal caPrincipal, PublicKey pubKey, byte[] nameConstraints) Creates an instance ofTrustAnchor
where the most-trusted CA is specified as an X500Principal and public key. -
Uses of PublicKey in java.security.interfaces
Modifier and TypeInterfaceDescriptioninterface
The interface to a DSA public key.interface
The interface to an elliptic curve (EC) public key.interface
An interface for an elliptic curve public key as defined by RFC 8032: Edwards-Curve Digital Signature Algorithm (EdDSA).interface
The interface to an RSA public key.interface
An interface for an elliptic curve public key as defined by RFC 7748. -
Uses of PublicKey in javax.crypto.interfaces
Modifier and TypeInterfaceDescriptioninterface
The interface to a Diffie-Hellman public key. -
Uses of PublicKey in javax.security.cert
Modifier and TypeMethodDescriptionabstract PublicKey
Certificate.getPublicKey()
Deprecated, for removal: This API element is subject to removal in a future version.Gets the public key from this certificate.Modifier and TypeMethodDescriptionabstract void
Deprecated, for removal: This API element is subject to removal in a future version.Verifies that this certificate was signed using the private key that corresponds to the specified public key.abstract void
Deprecated, for removal: This API element is subject to removal in a future version.Verifies that this certificate was signed using the private key that corresponds to the specified public key. -
Uses of PublicKey in javax.xml.crypto.dsig.keyinfo
Modifier and TypeMethodDescriptionKeyValue.getPublicKey()
Returns the public key of thisKeyValue
.Modifier and TypeMethodDescriptionabstract KeyValue
KeyInfoFactory.newKeyValue
(PublicKey key) Creates aKeyValue
from the specified public key.