PostLAMessages.proto 428 B

123456789101112131415161718
  1. syntax = "proto2";
  2. message ciphertext_client_data_field {
  3. bytes field = 1;
  4. }
  5. message extension_to_decryptor_enclosed_msg {
  6. bytes ciphertext_client_public_key = 1;
  7. repeated ciphertext_client_data_field ciphertext_fields = 2;
  8. }
  9. message extension_to_decryptor_ciphertext_msg {
  10. bytes ciphertext_bytes = 1;
  11. }
  12. message decryptor_to_extension_msg_t {
  13. repeated ciphertext_client_data_field ciphertext_fields= 1;
  14. }