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

protob: remove {Lisk,Stellar}{SignMessage,MessageSignature,VerifyMessage}

This commit is contained in:
Pavol Rusnak 2018-05-22 18:22:24 +02:00
parent ede4833c13
commit fb662e53b1
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -105,9 +105,6 @@ enum MessageType {
MessageType_LiskAddress = 115 [(wire_out) = true];
MessageType_LiskSignTx = 116 [(wire_in) = true];
MessageType_LiskSignedTx = 117 [(wire_out) = true];
MessageType_LiskSignMessage = 118 [(wire_in) = true];
MessageType_LiskMessageSignature = 119 [(wire_out) = true];
MessageType_LiskVerifyMessage = 120 [(wire_in) = true];
MessageType_LiskGetPublicKey = 121 [(wire_in) = true];
MessageType_LiskPublicKey = 122 [(wire_out) = true];
@ -116,9 +113,6 @@ enum MessageType {
MessageType_StellarPublicKey = 201 [(wire_out) = true];
MessageType_StellarSignTx = 202 [(wire_in) = true];
MessageType_StellarTxOpRequest = 203 [(wire_out) = true];
MessageType_StellarSignMessage = 204 [(wire_in) = true];
MessageType_StellarMessageSignature = 205 [(wire_out) = true];
MessageType_StellarVerifyMessage = 206 [(wire_in) = true];
MessageType_StellarCreateAccountOp = 210 [(wire_in) = true];
MessageType_StellarPaymentOp = 211 [(wire_in) = true];
MessageType_StellarPathPaymentOp = 212 [(wire_in) = true];
@ -1022,36 +1016,6 @@ message StellarPublicKey {
optional bytes public_key = 1; // Raw bytes of the public key (no version or checksum)
}
/**
* Request: ask device to sign the given string
* @next StellarMessageSignature
*/
message StellarSignMessage {
repeated uint32 address_n = 1; // BIP-32 path. For compatibility with other wallets, must be m/44'/148'/index'
optional bytes message = 2; // Message to sign
}
/**
* Response: device has signed data
* @prev StellarSignMessage
*/
message StellarMessageSignature {
optional bytes public_key = 1; // Raw bytes of the public key (no version or checksum)
optional bytes signature = 2; // ed25519 signature bytes
}
/**
* Request: ask device to verify that signature is valid (public_key has signed message)
* @next Success
* @next Failure
*/
message StellarVerifyMessage {
optional bytes public_key = 1; // Public key corresponding to the private key that signed the message
optional bytes message = 2; // Binary data that was signed
optional bytes signature = 3; // Signature to verify
}
/**
* Request: ask device to sign Stellar transaction
* @next StellarTxOpRequest
@ -1331,36 +1295,6 @@ message LiskSignedTx {
optional bytes signature = 1;
}
/**
* Request: Ask device to sign message
* @next LiskMessageSignature
* @next Failure
*/
message LiskSignMessage {
repeated uint32 address_n = 1;
optional bytes message = 2;
}
/**
* Response: Signed message
* @prev LiskSignMessage
*/
message LiskMessageSignature {
optional string address = 1;
optional bytes signature = 2;
}
/**
* Request: Ask device to verify message
* @next Success
* @next Failure
*/
message LiskVerifyMessage {
optional bytes signature = 1;
optional bytes public_key = 2;
optional bytes message = 3;
}
/////////////////////////////////////////////////////////////
// Debug messages (only available if DebugLink is enabled) //
/////////////////////////////////////////////////////////////