Chatto/src/main/frontend/chat/service/EncryptionService.ts

7 lines
307 B
TypeScript
Raw Normal View History

import { MessageCipherDTO } from "../dto/MessageCipherDTO";
2019-12-06 14:21:07 +00:00
export interface EncryptionService {
encrypt(passphrase: string, plainText: string): any;
decrypt(passphrase: string, cipher: MessageCipherDTO): string;
decryptAsPromise(passphrase: string, cipher: MessageCipherDTO): Promise<string>
2019-12-06 14:21:07 +00:00
}