@NonNullByDefault
Package javax.crypto
Provides the classes and interfaces for cryptographic operations. The
cryptographic operations defined in this package include encryption,
key generation and key agreement, and Message Authentication Code
(MAC) generation.
Support for encryption includes symmetric, asymmetric, block, and stream ciphers. This package also supports secure streams and sealed objects.
Many of the classes provided in this package are provider-based. The class itself defines a programming interface to which applications may write. The implementations themselves may then be written by independent third-party vendors and plugged in seamlessly as needed. Therefore application developers may take advantage of any number of provider-based implementations without having to add or rewrite code.
Package Specification
Related Documentation
For further documentation, please see:-
Interface Summary Interface Description SecretKey A secret (symmetric) key. -
Class Summary Class Description Cipher This class provides the functionality of a cryptographic cipher for encryption and decryption.CipherSpi This class defines the Service Provider Interface (SPI) for theCipherclass.KeyAgreement This class provides the functionality of a key agreement (or key exchange) protocol.KeyAgreementSpi This class defines the Service Provider Interface (SPI) for theKeyAgreementclass.KeyGenerator This class provides the functionality of a (symmetric) key generator.KeyGeneratorSpi This class defines the Service Provider Interface (SPI) for theKeyGeneratorclass.Mac This class provides the functionality of a "Message Authentication Code" (MAC) algorithm.MacSpi This class defines the Service Provider Interface (SPI) for theMacclass.SecretKeyFactory This class represents a factory for secret keys.SecretKeyFactorySpi This class defines the Service Provider Interface (SPI) for theSecretKeyFactoryclass. -
Exception Summary Exception Description AEADBadTagException This exception is thrown when aCipheroperating in an AEAD mode (such as GCM/CCM) is unable to verify the supplied authentication tag.BadPaddingException This exception is thrown when a particular padding mechanism is expected for the input data but the data is not padded properly.IllegalBlockSizeException This exception is thrown when the length of data provided to a block cipher is incorrect, i.e., does not match the block size of the cipher.NoSuchPaddingException This exception is thrown when a particular padding mechanism is requested but is not available in the environment.ShortBufferException This exception is thrown when an output buffer provided by the user is too short to hold the operation result.