From e14363eb99ed9365d8f963dfea888a2c86dd007f Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 17 Jun 2015 13:56:51 +0200 Subject: [PATCH] add CipherKeyValue.iv field (optional initialization vector) --- protob/messages.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protob/messages.proto b/protob/messages.proto index a94b89912f..007b80771a 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -470,6 +470,7 @@ message CipherKeyValue { optional bool encrypt = 4; // are we encrypting (True) or decrypting (False)? optional bool ask_on_encrypt = 5; // should we ask on encrypt operation? optional bool ask_on_decrypt = 6; // should we ask on decrypt operation? + optional bytes iv = 7; // initialization vector (will be computed if not set) } /**