web5_rust::crypto::secp256k1

Type Alias Key

source
pub type Key = Either<PublicKey, SecretKey>;

Aliased Type§

enum Key {
    Left(PublicKey),
    Right(SecretKey),
}

Variants§