A self hosted chat application with end-to-end encrypted messaging.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
498 B

export class MessageCipherDTO {
// iv!: string;
// v!: number;
// iterations!: number;
// keySize!: number;
// tagSize!: number;
// mode!: string;
// adata!: string;
// cipher!: string;
// salt!: string;
// cipherText!: string;
iv!: string;
v!: number;
iter!: number;
ks!: number;
ts!: number;
mode!: string;
adata!: string;
cipher!: string;
salt!: string;
ct!: string;
// public toMessageCipherDTO {
// }
}