Uses of Class
org.apache.poi.poifs.crypt.EncryptionMode
-
Packages that use EncryptionMode Package Description org.apache.poi.hssf.record Record package contains class representations for XLS binary strutures.org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.poifs.crypt Implementation of the ECMA-376 and MS-propritary document encryptions -
-
Uses of EncryptionMode in org.apache.poi.hssf.record
Constructors in org.apache.poi.hssf.record with parameters of type EncryptionMode Constructor Description FilePassRecord(EncryptionMode encryptionMode)
-
Uses of EncryptionMode in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return EncryptionMode Modifier and Type Method Description EncryptionMode
HSSFWorkbook. getEncryptionMode()
Methods in org.apache.poi.hssf.usermodel with parameters of type EncryptionMode Modifier and Type Method Description void
HSSFWorkbook. setEncryptionMode(EncryptionMode mode)
Sets the encryption mode - if not set, defaults tocryptoAPI
. -
Uses of EncryptionMode in org.apache.poi.poifs.crypt
Methods in org.apache.poi.poifs.crypt that return EncryptionMode Modifier and Type Method Description EncryptionMode
EncryptionInfo. getEncryptionMode()
static EncryptionMode
EncryptionMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static EncryptionMode[]
EncryptionMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.poi.poifs.crypt with parameters of type EncryptionMode Constructor Description EncryptionInfo(EncryptionMode encryptionMode)
Prepares for encryption, using the given Encryption Mode, and all other parameters as default.EncryptionInfo(EncryptionMode encryptionMode, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode)
Constructs an EncryptionInfo from scratchEncryptionInfo(LittleEndianInput dis, EncryptionMode preferredEncryptionMode)
-