Uses of Enum Class
org.apache.hadoop.crypto.CipherSuite
Packages that use CipherSuite
Package
Description
Crypto related classes.
An abstract file system API.
-
Uses of CipherSuite in org.apache.hadoop.crypto
Methods in org.apache.hadoop.crypto that return CipherSuiteModifier and TypeMethodDescriptionstatic CipherSuiteConvert to CipherSuite from name,algoBlockSizeis fixed for certain cipher suite, just need to compare the name.CipherOption.getCipherSuite()abstract CipherSuiteCryptoCodec.getCipherSuite()JceAesCtrCryptoCodec.getCipherSuite()JceSm4CtrCryptoCodec.getCipherSuite()OpensslAesCtrCryptoCodec.getCipherSuite()OpensslSm4CtrCryptoCodec.getCipherSuite()static CipherSuiteReturns the enum constant of this class with the specified name.static CipherSuite[]CipherSuite.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.hadoop.crypto with parameters of type CipherSuiteModifier and TypeMethodDescriptionstatic CryptoCodecCryptoCodec.getInstance(Configuration conf, CipherSuite cipherSuite) Get crypto codec for specified algorithm/mode/padding.static booleanOpensslCipher.isSupported(CipherSuite suite) Constructors in org.apache.hadoop.crypto with parameters of type CipherSuiteModifierConstructorDescriptionCipherOption(CipherSuite suite) CipherOption(CipherSuite suite, byte[] inKey, byte[] inIv, byte[] outKey, byte[] outIv) JceCtrCipher(int mode, String provider, CipherSuite suite, String name) OpensslCtrCipher(int mode, CipherSuite suite) OpensslCtrCipher(int mode, CipherSuite suite, String engineId) -
Uses of CipherSuite in org.apache.hadoop.fs
Methods in org.apache.hadoop.fs that return CipherSuiteConstructors in org.apache.hadoop.fs with parameters of type CipherSuiteModifierConstructorDescriptionFileEncryptionInfo(CipherSuite suite, CryptoProtocolVersion version, byte[] edek, byte[] iv, String keyName, String ezKeyVersionName) Create a FileEncryptionInfo.