const mixin crypto::PrivKeyEntry

crypto::PrivKeyEntry : crypto::KeyStoreEntry

Source

A PrivKeyEntry stores a private key and the certificate chain for the corresponding public key.

cert

virtual Cert cert()

Source

Get the end entity certificate from the certificate chain; this should be the first entry in the certChain.

certChain

abstract Cert[] certChain()

Source

Get the certificate chain from this entry.

keyPair

abstract KeyPair keyPair()

Source

Get the KeyPair for the entry. It consists of the priv and pub keys from this entry.

priv

abstract PrivKey priv()

Source

Get the private key from this entry.

pub

virtual PubKey pub()

Source

Convenience to get the public key from the cert.