Get decryption keys from password

This commit is contained in:
C-3PO 2018-06-22 13:29:33 +02:00
parent 9899514578
commit f80e34826c
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
6 changed files with 113 additions and 9 deletions

View file

@ -24,6 +24,10 @@ interface ISsnFileEntry {
name: string;
/** Uncompressed size */
size: number;
/** Compressed size */
comprSize: number;
/** Decryption keys needed to decrypt the file */
decryptionKeys: [number, number, number] | undefined;
}
export default ISsnFileEntry;