Module jormungandr_lib::crypto::key

source ·
Expand description

cryptographic keys and associated interfaces

This module provides a wrapping around jormungandr’s cryptographic primitives and provide the appropriate trait implementation for user interactions.

Structs

  • a cryptographic identifier. Can be used to identify a signature has been generated by its associated SigningKey.
  • A key pair of the given cryptographic algorithm
  • signature for the given cryptographic algorithm and associated type It can be created from a SigningKey and a value of type T and verified against an Identifier and the value of type T.
  • A cryptographic signing key (or secret key). Can be used to sign transaction, certificates or blocks.