Uses of Class
org.apache.poi.poifs.crypt.CipherAlgorithm

Packages that use CipherAlgorithm
org.apache.poi.poifs.crypt Implementation of the ECMA-376 Document Encryption 
org.apache.poi.poifs.crypt.agile   
org.apache.poi.poifs.crypt.binaryrc4   
org.apache.poi.poifs.crypt.cryptoapi   
org.apache.poi.poifs.crypt.standard   
 

Uses of CipherAlgorithm in org.apache.poi.poifs.crypt
 

Methods in org.apache.poi.poifs.crypt that return CipherAlgorithm
static CipherAlgorithm CipherAlgorithm.fromEcmaId(int ecmaId)
           
static CipherAlgorithm CipherAlgorithm.fromXmlId(java.lang.String xmlId, int keySize)
           
 CipherAlgorithm EncryptionVerifier.getCipherAlgorithm()
           
 CipherAlgorithm EncryptionHeader.getCipherAlgorithm()
           
static CipherAlgorithm CipherAlgorithm.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CipherAlgorithm[] CipherAlgorithm.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.poi.poifs.crypt with parameters of type CipherAlgorithm
static javax.crypto.Cipher CryptoFunctions.getCipher(java.security.Key key, CipherAlgorithm cipherAlgorithm, ChainingMode chain, byte[] vec, int cipherMode, java.lang.String padding)
          Initialize a new cipher object with the given cipher properties If the given algorithm is not implemented in the JCE, it will try to load it from the bouncy castle provider.
static javax.crypto.Cipher CryptoFunctions.getCipher(javax.crypto.SecretKey key, CipherAlgorithm cipherAlgorithm, ChainingMode chain, byte[] vec, int cipherMode)
           
 void EncryptionInfoBuilder.initialize(EncryptionInfo ei, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
          initialize the builder from scratch
protected  void EncryptionVerifier.setCipherAlgorithm(CipherAlgorithm cipherAlgorithm)
           
protected  void EncryptionHeader.setCipherAlgorithm(CipherAlgorithm cipherAlgorithm)
           
 

Constructors in org.apache.poi.poifs.crypt with parameters of type CipherAlgorithm
EncryptionInfo(DirectoryNode dir, EncryptionMode encryptionMode, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
          Deprecated. use EncryptionInfo.EncryptionInfo(EncryptionMode, CipherAlgorithm, HashAlgorithm, int, int, ChainingMode)
EncryptionInfo(EncryptionMode encryptionMode, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
          Constructs an EncryptionInfo from scratch
EncryptionInfo(NPOIFSFileSystem fs, EncryptionMode encryptionMode, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
          Deprecated. use EncryptionInfo.EncryptionInfo(EncryptionMode, CipherAlgorithm, HashAlgorithm, int, int, ChainingMode)
EncryptionInfo(POIFSFileSystem fs, EncryptionMode encryptionMode, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
          Deprecated. use EncryptionInfo.EncryptionInfo(EncryptionMode, CipherAlgorithm, HashAlgorithm, int, int, ChainingMode)
 

Uses of CipherAlgorithm in org.apache.poi.poifs.crypt.agile
 

Methods in org.apache.poi.poifs.crypt.agile with parameters of type CipherAlgorithm
 void AgileEncryptionInfoBuilder.initialize(EncryptionInfo info, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
           
 

Constructors in org.apache.poi.poifs.crypt.agile with parameters of type CipherAlgorithm
AgileEncryptionHeader(CipherAlgorithm algorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
           
AgileEncryptionVerifier(CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
           
 

Uses of CipherAlgorithm in org.apache.poi.poifs.crypt.binaryrc4
 

Methods in org.apache.poi.poifs.crypt.binaryrc4 with parameters of type CipherAlgorithm
 void BinaryRC4EncryptionInfoBuilder.initialize(EncryptionInfo info, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
           
 

Uses of CipherAlgorithm in org.apache.poi.poifs.crypt.cryptoapi
 

Methods in org.apache.poi.poifs.crypt.cryptoapi with parameters of type CipherAlgorithm
 void CryptoAPIEncryptionInfoBuilder.initialize(EncryptionInfo info, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
          initialize the builder from scratch
 

Constructors in org.apache.poi.poifs.crypt.cryptoapi with parameters of type CipherAlgorithm
CryptoAPIEncryptionHeader(CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
           
CryptoAPIEncryptionVerifier(CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
           
 

Uses of CipherAlgorithm in org.apache.poi.poifs.crypt.standard
 

Methods in org.apache.poi.poifs.crypt.standard with parameters of type CipherAlgorithm
 void StandardEncryptionInfoBuilder.initialize(EncryptionInfo info, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
          initialize the builder from scratch
 

Constructors in org.apache.poi.poifs.crypt.standard with parameters of type CipherAlgorithm
StandardEncryptionHeader(CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
           
StandardEncryptionVerifier(CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
           
 



Copyright 2016 The Apache Software Foundation or its licensors, as applicable.