1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-02 02:41:28 +00:00

add ECDSA curve name specification (for SSH authentication)

This commit is contained in:
Roman Zeyde 2015-06-23 14:40:58 +03:00
parent e96ec085d5
commit 12288143f5

View File

@ -255,6 +255,7 @@ message Entropy {
*/
message GetPublicKey {
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
optional string ecdsa_curve_name = 2; // ECDSA curve name to use
}
/**
@ -570,6 +571,7 @@ message SignIdentity {
optional IdentityType identity = 1; // identity
optional bytes challenge_hidden = 2; // non-visible challenge
optional string challenge_visual = 3; // challenge shown on display (e.g. date+time)
optional string ecdsa_curve_name = 4; // ECDSA curve name to use
}
/**