- EncodedKeySpec - Class in java.security.spec
-
This class represents a public or private key in encoded format.
- EncodedKeySpec(byte[]) - Constructor for class java.security.spec.EncodedKeySpec
-
Creates a new EncodedKeySpec with the given encoded key.
- ENCRYPT_MODE - Static variable in class javax.crypto.Cipher
-
Constant used to initialize cipher to encryption mode.
- engineAliases() - Method in class java.security.KeyStoreSpi
-
Lists all the alias names of this keystore.
- engineContainsAlias(String) - Method in class java.security.KeyStoreSpi
-
Checks if the given alias exists in this keystore.
- engineDeleteEntry(String) - Method in class java.security.KeyStoreSpi
-
Deletes the entry identified by the given alias from this keystore.
- engineDigest() - Method in class java.security.MessageDigestSpi
-
Completes the hash computation by performing final operations such as padding.
- engineDigest(byte[], int, int) - Method in class java.security.MessageDigestSpi
-
Completes the hash computation by performing final operations such as padding.
- engineGenerateCertificate(InputStream) - Method in class java.security.cert.CertificateFactorySpi
-
Generates a certificate object and initializes it with the data read from the input stream inStream
.
- engineGetCertificate(String) - Method in class java.security.KeyStoreSpi
-
Returns the certificate associated with the given alias.
- engineGetCertificateChain(String) - Method in class java.security.KeyStoreSpi
-
Returns the certificate chain associated with the given alias.
- engineGetDigestLength() - Method in class java.security.MessageDigestSpi
-
Returns the digest length in bytes.
- engineGetKey(String, char[]) - Method in class java.security.KeyStoreSpi
-
Returns the key associated with the given alias, using the given password to recover it.
- engineInitSign(PrivateKey) - Method in class java.security.SignatureSpi
-
Initializes this signature object with the specified private key for signing operations.
- engineInitSign(PrivateKey, SecureRandom) - Method in class java.security.SignatureSpi
-
Initializes this signature object with the specified private key and source of randomness for signing operations.
- engineInitVerify(PublicKey) - Method in class java.security.SignatureSpi
-
Initializes this signature object with the specified public key for verification operations.
- engineIsCertificateEntry(String) - Method in class java.security.KeyStoreSpi
-
Returns true if the entry identified by the given alias was created by a call to setCertificateEntry
, or
created by a call to setEntry
with a TrustedCertificateEntry
.
- engineIsKeyEntry(String) - Method in class java.security.KeyStoreSpi
-
Returns true if the entry identified by the given alias was created by a call to setKeyEntry
, or created
by a call to setEntry
with a PrivateKeyEntry
or a SecretKeyEntry
.
- engineLoad(InputStream, char[]) - Method in class java.security.KeyStoreSpi
-
Loads the keystore from the given input stream.
- engineReset() - Method in class java.security.MessageDigestSpi
-
Resets the digest for further use.
- engineSetCertificateEntry(String, Certificate) - Method in class java.security.KeyStoreSpi
-
Assigns the given certificate to the given alias.
- engineSetKeyEntry(String, byte[], Certificate[]) - Method in class java.security.KeyStoreSpi
-
Assigns the given key (that has already been protected) to the given alias.
- engineSetParameter(AlgorithmParameterSpec) - Method in class java.security.SignatureSpi
-
This method is overridden by providers to initialize this signature engine with the specified parameter set.
- engineSign() - Method in class java.security.SignatureSpi
-
Returns the signature bytes of all the data updated so far.
- engineSign(byte[], int, int) - Method in class java.security.SignatureSpi
-
Finishes this signature operation and stores the resulting signature bytes in the provided buffer outbuf
,
starting at offset
.
- engineSize() - Method in class java.security.KeyStoreSpi
-
Retrieves the number of entries in this keystore.
- engineUpdate(byte) - Method in class java.security.MessageDigestSpi
-
Updates the digest using the specified byte.
- engineUpdate(byte[], int, int) - Method in class java.security.MessageDigestSpi
-
Updates the digest using the specified array of bytes, starting at the specified offset.
- engineUpdate(byte) - Method in class java.security.SignatureSpi
-
Updates the data to be signed or verified using the specified byte.
- engineUpdate(byte[], int, int) - Method in class java.security.SignatureSpi
-
Updates the data to be signed or verified, using the specified array of bytes, starting at the specified offset.
- engineVerify(byte[]) - Method in class java.security.SignatureSpi
-
Verifies the passed-in signature.
- engineVerify(byte[], int, int) - Method in class java.security.SignatureSpi
-
Verifies the passed-in signature in the specified array of bytes, starting at the specified offset.
- equals(Object) - Method in class java.security.cert.Certificate
-
Compares this certificate for equality with the specified object.
- equals(Object) - Method in interface java.security.Principal
-
Compares this principal to the specified object.
- equals(Object) - Method in class javax.crypto.spec.SecretKeySpec
-
Tests for equality between the specified object and this object.
- equals(Object) - Method in class javax.security.auth.x500.X500Principal
-
Compares the specified Object
with this X500Principal
for equality.