Chatto/chatto/src/main/javascript/ts/src/service/EncryptionService.ts

6 lines
223 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;
2019-12-06 14:21:07 +00:00
}