From 35c80502be8c5a4ac32de93062f8cc47004c395e Mon Sep 17 00:00:00 2001 From: ehanoc Date: Sun, 9 Feb 2025 13:14:34 +0000 Subject: [PATCH] Adding signature verification public key Signed-off-by: ehanoc --- contact.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contact.proto b/contact.proto index e1b4c08..8f3f33c 100644 --- a/contact.proto +++ b/contact.proto @@ -62,6 +62,11 @@ message ContactMessage { */ MessageEncodingEnum messageEncodingType = 5; + /** + * public key in PEM encoding format used to verify the signature of the message + */ + string publicVerificationKey = 6; + enum MessageEncodingEnum { Protobuf = 0; }