Struct mbedtls_lms_private_t

struct mbedtls_lms_private_t

LMS private context structure.

A LMS private key is a set of LMOTS private keys, an index to the next usable key, and the applicable parameter set.

The context must be initialized before it is used. A public key must either be imported or generated from a private context.

digraph lms_public_t { UNINITIALIZED -> INIT [label="init"]; HAVE_PRIVATE_KEY -> INIT [label="free"]; INIT -> HAVE_PRIVATE_KEY [label="generate_private_key"]; }