prysm-pulse/proto/validator/accounts/v2/keymanager.proto
Raul Jordan d447bb6458
Direct Keymanager: Implement Sign (#6477)
* implement keymanager proto

* utilize proto message and properly comment

* add in godoc

* doc

* add in doc

* sign implementation done

* add documentation for direct keymanager and add lock to signing

* sign method tests

* update godoc

* concrete sign

* fix build

* proper iface
2020-07-03 18:00:02 -05:00

14 lines
397 B
Protocol Buffer

syntax = "proto3";
package ethereum.validator.accounts.v2;
// SignRequest is a message type used by a keymanager
// as part of Prysm's accounts v2 implementation.
message SignRequest {
// 48 byte public key corresponding to an associated private key
// being requested to sign data.
bytes public_key = 1;
// Raw bytes data the client is requesting to sign.
bytes data = 2;
}