Package org.apache.poi.poifs.crypt.agile
Class KeyEncryptor
- java.lang.Object
-
- org.apache.poi.poifs.crypt.agile.KeyEncryptor
-
public class KeyEncryptor extends Object
A sequence of KeyEncryptor elements. Exactly one KeyEncryptors element MUST be present, and the KeyEncryptors element MUST contain at least one KeyEncryptor.
-
-
Constructor Summary
Constructors Constructor Description KeyEncryptor()
KeyEncryptor(Element keyEncryptor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CertificateKeyEncryptor
getCertificateKeyEncryptor()
PasswordKeyEncryptor
getPasswordKeyEncryptor()
void
setCertificateKeyEncryptor(CertificateKeyEncryptor certificateKeyEncryptor)
void
setPasswordKeyEncryptor(PasswordKeyEncryptor passwordKeyEncryptor)
-
-
-
Constructor Detail
-
KeyEncryptor
public KeyEncryptor()
-
KeyEncryptor
public KeyEncryptor(Element keyEncryptor)
-
-
Method Detail
-
getPasswordKeyEncryptor
public PasswordKeyEncryptor getPasswordKeyEncryptor()
-
setPasswordKeyEncryptor
public void setPasswordKeyEncryptor(PasswordKeyEncryptor passwordKeyEncryptor)
-
getCertificateKeyEncryptor
public CertificateKeyEncryptor getCertificateKeyEncryptor()
-
setCertificateKeyEncryptor
public void setCertificateKeyEncryptor(CertificateKeyEncryptor certificateKeyEncryptor)
-
-