ssh_cert_import.h
error_t sshImportDsaCertPublicKey(const SshCertificate *cert, DsaPublicKey *publicKey)
Import a DSA public key from a certificate.
Definition: ssh_cert_import.c:191
error_t sshImportEd25519CertPublicKey(const SshCertificate *cert, EddsaPublicKey *publicKey)
Import an Ed25519 public key from a certificate.
Definition: ssh_cert_import.c:313
error_t sshImportRsaCertPublicKey(const SshCertificate *cert, RsaPublicKey *publicKey)
Import an RSA public key from a certificate.
Definition: ssh_cert_import.c:143
EdDSA (Edwards-Curve Digital Signature Algorithm)
RSA public-key cryptography standard.
SSH certificate parsing.
DSA (Digital Signature Algorithm)
error_t sshImportCertificate(const char_t *input, size_t inputLen, uint8_t *output, size_t *outputLen)
Import SSH certificate (OpenSSH format)
Definition: ssh_cert_import.c:85
SSH data type representations.
ECC (Elliptic Curve Cryptography)
const char_t * sshGetCertType(const char_t *input, size_t length)
Get SSH certificate type.
Definition: ssh_cert_import.c:348
error_t sshImportEcdsaCertPublicKey(const SshCertificate *cert, EcDomainParameters *params, EcPublicKey *publicKey)
Import an ECDSA public key from a certificate.
Definition: ssh_cert_import.c:254