Uses of Class
java.security.GeneralSecurityException
| Package | Description |
|---|---|
| java.security |
Extensible cryptographic service provider infrastructure (SPI) for using
and defining services such as
Certificates,
Keys, KeyStores, MessageDigests, and Signatures. |
| java.security.cert |
This package provides all the classes and all the interfaces needed to generate, administer and verify
X.509 certificates.
|
| java.security.spec |
This package provides the classes and interfaces needed to specify keys and parameters for
encryption and signing algorithms.
|
| javax.crypto |
This package provides the classes and interfaces for cryptographic applications implementing algorithms for encryption, decryption, or
key agreement.
|
| javax.security.auth.login |
This package provides a pluggable and stackable authentication system based on
ideas and concepts from the Unix-PAM module.
|
| org.apache.harmony.security.utils | |
| org.bouncycastle.jcajce.provider.asymmetric.util | |
| org.bouncycastle.jce.exception | |
| org.bouncycastle.jce.provider | |
| org.conscrypt |
-
Uses of GeneralSecurityException in java.security
Subclasses of GeneralSecurityException in java.security Modifier and Type Class Description classDigestExceptionDigestExceptionis a general message digest exception.classInvalidAlgorithmParameterExceptionInvalidAlgorithmParameterExceptionindicates the occurrence of invalid algorithm parameters.classInvalidKeyExceptionInvalidKeyExceptionindicates exceptional conditions, caused by an invalid key.classKeyExceptionKeyExceptionis the common superclass of all key related exceptions.classKeyManagementExceptionKeyManagementExceptionis a general exception, thrown to indicate an exception during processing an operation concerning key management.classKeyStoreExceptionKeyStoreExceptionis a generalKeyStoreexception.classNoSuchAlgorithmExceptionNoSuchAlgorithmExceptionindicates that a requested algorithm could not be found.classNoSuchProviderExceptionNoSuchProviderExceptionindicates that a requested security provider could not be found.classSignatureExceptionSignatureExceptionis a generalSignatureexception.classUnrecoverableEntryExceptionUnrecoverableEntryExceptionindicates, that aKeyStore.Entrycannot be recovered from aKeyStore.classUnrecoverableKeyExceptionUnrecoverableKeyExceptionindicates, that a key cannot be recovered from aKeyStore. -
Uses of GeneralSecurityException in java.security.cert
Subclasses of GeneralSecurityException in java.security.cert Modifier and Type Class Description classCertificateEncodingExceptionThe exception that is thrown when an error occurs while aCertificateis being encoded.classCertificateExceptionThe base class for allCertificaterelated exceptions.classCertificateExpiredExceptionThe exception that is thrown when aCertificatehas expired.classCertificateNotYetValidExceptionThe exception that is thrown when aCertificateis not yet valid or will not yet be valid on a specified date.classCertificateParsingExceptionThe exception that is thrown when aCertificatecan not be parsed.classCertPathBuilderExceptionThe exception that is thrown when aCertPathBuildermethod fails.classCertPathValidatorExceptionThe exception that is thrown when a certification path (or certificate chain) cannot be validated.classCertStoreExceptionThe exception that is thrown when an access to aCertStorefails.classCRLExceptionThe exception that is thrown if errors occur during handling ofCRLs. -
Uses of GeneralSecurityException in java.security.spec
Subclasses of GeneralSecurityException in java.security.spec Modifier and Type Class Description classInvalidKeySpecExceptionThe exception that is thrown when an invalid key specification is encountered.classInvalidParameterSpecExceptionThe exception that is thrown when an invalid parameter specification is encountered. -
Uses of GeneralSecurityException in javax.crypto
Subclasses of GeneralSecurityException in javax.crypto Modifier and Type Class Description classAEADBadTagExceptionThrown by aCipherthat is using an Authenticated Encryption with Additional Data (AEAD) mode such as Galois/Counter Mode (GCM) and the tag failed verification.classBadPaddingExceptionThe exception that is thrown when a padding mechanism is expected for the input data, but the input data does not have the proper padding bytes.classExemptionMechanismExceptionThis is the base class forExemptionMechanismException.classIllegalBlockSizeExceptionThe exception, that is thrown when the data length provided to a block cipher does not match the block size of the cipher.classNoSuchPaddingExceptionThe exception that is thrown when the requested padding mechanism is not supported.classShortBufferExceptionThe exception that is thrown when the result of an operation is attempted to store in a user provided buffer that is too small. -
Uses of GeneralSecurityException in javax.security.auth.login
Subclasses of GeneralSecurityException in javax.security.auth.login Modifier and Type Class Description classLoginExceptionBase class for exceptions that are thrown when a login error occurs. -
Uses of GeneralSecurityException in org.apache.harmony.security.utils
Methods in org.apache.harmony.security.utils that throw GeneralSecurityException Modifier and Type Method Description static Certificate[]JarUtils. verifySignature(InputStream signature, InputStream signatureBlock)This method handle all the work with PKCS7, ASN1 encoding, signature verifying, and certification path building. -
Uses of GeneralSecurityException in org.bouncycastle.jcajce.provider.asymmetric.util
Subclasses of GeneralSecurityException in org.bouncycastle.jcajce.provider.asymmetric.util Modifier and Type Class Description classExtendedInvalidKeySpecException -
Uses of GeneralSecurityException in org.bouncycastle.jce.exception
Subclasses of GeneralSecurityException in org.bouncycastle.jce.exception Modifier and Type Class Description classExtCertPathBuilderExceptionclassExtCertPathValidatorException -
Uses of GeneralSecurityException in org.bouncycastle.jce.provider
Methods in org.bouncycastle.jce.provider that throw GeneralSecurityException Modifier and Type Method Description protected static voidCertPathValidatorUtilities. verifyX509Certificate(X509Certificate cert, PublicKey publicKey, String sigProvider) -
Uses of GeneralSecurityException in org.conscrypt
Constructors in org.conscrypt that throw GeneralSecurityException Constructor Description DefaultSSLContextImpl()DefaultSSLContextImpl delegates the work to the super class since there is no way to put a synchronized around both the call to super and the rest of this constructor to guarantee that we don't have races in creating the state shared between all default SSLContexts.OpenSSLContextImpl(DefaultSSLContextImpl dummy)SSLContextImpl(DefaultSSLContextImpl dummy)Constuctor for the DefaultSSLContextImpl.