=pod =head1 NAME EVP_PKEY-X25519, EVP_PKEY-X448, EVP_PKEY-ED25519, EVP_PKEY-ED448, EVP_KEYMGMT-X25519, EVP_KEYMGMT-X448, EVP_KEYMGMT-ED25519, EVP_KEYMGMT-ED448 - EVP_PKEY X25519, X448, ED25519 and ED448 keytype and algorithm support =head1 DESCRIPTION The B, B, B and B keytypes are implemented in OpenSSL's default and FIPS providers. These implementations support the associated key, containing the public key I and the private key I. =head2 Keygen Parameters =over 4 =item "dhkem-ikm" (B) DHKEM requires the generation of a keypair using an input key material (seed). Use this to specify the key material used for generation of the private key. This value should not be reused for other purposes. It should have a length of at least 32 for X25519, and 56 for X448. This is only supported by X25519 and X448. =back Use EVP_PKEY_CTX_set_params() after calling EVP_PKEY_keygen_init(). =head2 Common X25519, X448, ED25519 and ED448 parameters In addition to the common parameters that all keytypes should support (see L), the implementation of these keytypes support the following. =over 4 =item "group" (B) This is only supported by X25519 and X448. The group name must be "x25519" or "x448" respectively for those algorithms. This is only present for consistency with other key exchange algorithms and is typically not needed. =item "pub" (B) The public key value. =item "priv" (B) The private key value. =item "encoded-pub-key" (B) Used for getting and setting the encoding of a public key for the B and B key types. Public keys are expected be encoded in a format as defined by RFC7748. =back =head2 ED25519 and ED448 parameters =over 4 =item "mandatory-digest" (B) The empty string, signifying that no digest may be specified. =back =head1 CONFORMING TO =over 4 =item RFC 8032 =item RFC 8410 =back =head1 EXAMPLES An B context can be obtained by calling: EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "X25519", NULL); EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "X448", NULL); EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "ED25519", NULL); EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "ED448", NULL); An B key can be generated like this: pkey = EVP_PKEY_Q_keygen(NULL, NULL, "X25519"); An B, B, or B key can be generated likewise. =head1 SEE ALSO L, L, L, L, L, L, L =head1 COPYRIGHT Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L. =cut