export interface MessageEncryptRequest {
    method: 'symmetric' | 'asymmetric';
    message: string;
    publicKey: string;
    protocol: string;
    publicKeyToEncryptResponse: string;
    callbackURL?: string;
}
