syntax = "proto3"; package Yoti.Protobuf.compubapi_v3; option java_package = "com.yoti.compubapi_v3"; option java_outer_classname = "EncryptedDataProto"; message EncryptedData { // the iv will be used in conjunction with the secret key // received via other channel in order to decrypt the cipher_text bytes iv = 1; // block of bytes to be decrypted bytes cipher_text = 2; }