1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-23 16:08:17 +00:00

add CipherKeyValue.iv field (optional initialization vector)

This commit is contained in:
Pavol Rusnak 2015-06-17 13:56:51 +02:00
parent 90678eec73
commit e14363eb99

View File

@ -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)
}
/**