2018-01-08 20:11:28 +01:00
|
|
|
import { CipherString } from '../models/domain/cipherString';
|
|
|
|
import { SymmetricCryptoKey } from '../models/domain/symmetricCryptoKey';
|
|
|
|
|
|
|
|
import { ProfileOrganizationResponse } from '../models/response/profileOrganizationResponse';
|
|
|
|
|
2018-01-25 20:26:09 +01:00
|
|
|
export abstract class CryptoService {
|
|
|
|
setKey: (key: SymmetricCryptoKey) => Promise<any>;
|
|
|
|
setKeyHash: (keyHash: string) => Promise<{}>;
|
|
|
|
setEncKey: (encKey: string) => Promise<{}>;
|
|
|
|
setEncPrivateKey: (encPrivateKey: string) => Promise<{}>;
|
|
|
|
setOrgKeys: (orgs: ProfileOrganizationResponse[]) => Promise<{}>;
|
|
|
|
getKey: () => Promise<SymmetricCryptoKey>;
|
|
|
|
getKeyHash: () => Promise<string>;
|
|
|
|
getEncKey: () => Promise<SymmetricCryptoKey>;
|
|
|
|
getPrivateKey: () => Promise<ArrayBuffer>;
|
|
|
|
getOrgKeys: () => Promise<Map<string, SymmetricCryptoKey>>;
|
|
|
|
getOrgKey: (orgId: string) => Promise<SymmetricCryptoKey>;
|
|
|
|
clearKey: () => Promise<any>;
|
|
|
|
clearKeyHash: () => Promise<any>;
|
|
|
|
clearEncKey: (memoryOnly?: boolean) => Promise<any>;
|
|
|
|
clearPrivateKey: (memoryOnly?: boolean) => Promise<any>;
|
|
|
|
clearOrgKeys: (memoryOnly?: boolean) => Promise<any>;
|
|
|
|
clearKeys: () => Promise<any>;
|
|
|
|
toggleKey: () => Promise<any>;
|
|
|
|
makeKey: (password: string, salt: string) => SymmetricCryptoKey;
|
|
|
|
hashPassword: (password: string, key: SymmetricCryptoKey) => Promise<string>;
|
|
|
|
makeEncKey: (key: SymmetricCryptoKey) => Promise<CipherString>;
|
2018-01-25 20:57:42 +01:00
|
|
|
encrypt: (plainValue: string | Uint8Array, key?: SymmetricCryptoKey,
|
|
|
|
plainValueEncoding?: string) => Promise<CipherString>;
|
2018-01-25 20:26:09 +01:00
|
|
|
encryptToBytes: (plainValue: ArrayBuffer, key?: SymmetricCryptoKey) => Promise<ArrayBuffer>;
|
|
|
|
decrypt: (cipherString: CipherString, key?: SymmetricCryptoKey, outputEncoding?: string) => Promise<string>;
|
|
|
|
decryptFromBytes: (encBuf: ArrayBuffer, key: SymmetricCryptoKey) => Promise<ArrayBuffer>;
|
|
|
|
rsaDecrypt: (encValue: string) => Promise<string>;
|
2018-01-08 20:11:28 +01:00
|
|
|
}
|