1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-09 06:50:58 +00:00

Merge pull request #6 from romanz/ssh-agent

add ECDSA curve name specification (for SSH authentication)
This commit is contained in:
Pavol Rusnak 2015-06-28 21:08:01 +02:00
commit d334bbf740

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
}
/**
@ -571,6 +572,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
}
/**