juno_rust_proto/prost/cosmos-sdk/
cosmos.crypto.secp256k1.rs

1/// PubKey defines a secp256k1 public key
2/// Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte
3/// if the y-coordinate is the lexicographically largest of the two associated with
4/// the x-coordinate. Otherwise the first byte is a 0x03.
5/// This prefix is followed with the x-coordinate.
6#[allow(clippy::derive_partial_eq_without_eq)]
7#[derive(Clone, PartialEq, ::prost::Message)]
8pub struct PubKey {
9    #[prost(bytes = "vec", tag = "1")]
10    pub key: ::prost::alloc::vec::Vec<u8>,
11}
12/// PrivKey defines a secp256k1 private key.
13#[allow(clippy::derive_partial_eq_without_eq)]
14#[derive(Clone, PartialEq, ::prost::Message)]
15pub struct PrivKey {
16    #[prost(bytes = "vec", tag = "1")]
17    pub key: ::prost::alloc::vec::Vec<u8>,
18}