SilcSshPrivateKey

NAME

    typedef struct { ... } *SilcSshPrivateKey;

DESCRIPTION

This structure defines the SSH2 private key. This context can be retrieved from SilcPrivateKey by calling silc_pkcs_private_key_get_pkcs for the PKCS type SILC_PKCS_SSH2.

SOURCE

typedef struct SilcSshPrivateKeyStruct  {
  SilcHashTable fields;            /* Private key headers */
  const SilcPKCSAlgorithm *pkcs;   /* PKCS Algorithm */
  void *private_key;               /* PKCS Algorithm specific private key */
  SilcSshKeyType type;             /* Private key type */
} *SilcSshPrivateKey;