r2-shared-js
Version:
Readium 2 'shared' for NodeJS (TypeScript)
11 lines (10 loc) • 395 B
TypeScript
import { CipherData } from "./encryption-cypherdata";
import { KeyInfo } from "./encryption-keyinfo";
import { EncryptionMethod } from "./encryption-method";
import { EncryptionProperty } from "./encryption-property";
export declare class EncryptedData {
EncryptionMethod: EncryptionMethod;
KeyInfo: KeyInfo;
CipherData: CipherData;
EncryptionProperties: EncryptionProperty[];
}