FilePathEncrypt.XTS
An XTS implementation as described in
IEEE P1619 (Standard Architecture for Encrypted Shared Storage Media).
See also
http://axelkenzo.ru/downloads/1619-2007-NIST-Submission.pdf
| Methods |
| void |
decrypt(long id, int len, byte[] data, int offset)
Decrypt the data.
|
| void |
decrypt(long id, int len, byte[] data, int offset)
Decrypt the data.
Parameters:
id - the (sector) id
len - the number of bytes
data - the data
offset - the offset within the data
|
| void |
encrypt(long id, int len, byte[] data, int offset)
Encrypt the data.
|
| void |
encrypt(long id, int len, byte[] data, int offset)
Encrypt the data.
Parameters:
id - the (sector) id
len - the number of bytes
data - the data
offset - the offset within the data
|
|