Next: Hash Algorithms, Up: Algorithms [Contents][Index]
Public key algorithms are used for encryption, decryption, signing and verification of signatures.
The gpgme_pubkey_algo_t type specifies the set of all public key
algorithms that are supported by GPGME. Possible values
are:
GPGME_PK_RSAThis value indicates the RSA (Rivest, Shamir, Adleman) algorithm.
GPGME_PK_RSA_EDeprecated. This value indicates the RSA (Rivest, Shamir, Adleman) algorithm for encryption and decryption only.
GPGME_PK_RSA_SDeprecated. This value indicates the RSA (Rivest, Shamir, Adleman) algorithm for signing and verification only.
GPGME_PK_DSAThis value indicates DSA, the Digital Signature Algorithm.
GPGME_PK_ELGThis value indicates ElGamal.
GPGME_PK_ELG_EThis value also indicates ElGamal and is used specifically in GnuPG.
GPGME_PK_ECCSINCE: 1.5.0
This value is a generic indicator for ellipic curve algorithms.
GPGME_PK_ECDSASINCE: 1.3.0
This value indicates ECDSA, the Elliptic Curve Digital Signature Algorithm as defined by FIPS 186-2 and RFC-6637.
GPGME_PK_ECDHSINCE: 1.3.0
This value indicates ECDH, the Eliptic Curve Diffie-Hellmann encryption algorithm as defined by RFC-6637.
GPGME_PK_EDDSASINCE: 1.7.0
This value indicates the EdDSA algorithm.
The function gpgme_pubkey_algo_name returns a pointer to a
statically allocated string containing a description of the public key
algorithm algo. This string can be used to output the name of
the public key algorithm to the user.
If algo is not a valid public key algorithm, NULL is
returned.
SINCE: 1.7.0
The function gpgme_pubkey_algo_string is a convenience function
to build and return an algorithm string in the same way GnuPG does
(e.g., “rsa2048” or “ed25519”). The caller must free the result
using gpgme_free. On error (e.g., invalid argument or memory
exhausted), the function returns NULL and sets ERRNO.
Next: Hash Algorithms, Up: Algorithms [Contents][Index]