Package com.itextpdf.kernel.crypto
Class StandardDecryptor
- java.lang.Object
-
- com.itextpdf.kernel.crypto.StandardDecryptor
-
- All Implemented Interfaces:
IDecryptor
public class StandardDecryptor extends java.lang.Object implements IDecryptor
-
-
Field Summary
Fields Modifier and Type Field Description protected ARCFOUREncryption
arcfour
-
Constructor Summary
Constructors Constructor Description StandardDecryptor(byte[] key, int off, int len)
Creates a new instance of StandardDecryption
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
finish()
byte[]
update(byte[] b, int off, int len)
-
-
-
Field Detail
-
arcfour
protected ARCFOUREncryption arcfour
-
-
Method Detail
-
update
public byte[] update(byte[] b, int off, int len)
- Specified by:
update
in interfaceIDecryptor
-
finish
public byte[] finish()
- Specified by:
finish
in interfaceIDecryptor
-
-