1EVP_KEM-RSA(7ossl) OpenSSL EVP_KEM-RSA(7ossl)
2
3
4
6 EVP_KEM-RSA - EVP_KEM RSA keytype and algorithm support
7
9 The RSA keytype and its parameters are described in EVP_PKEY-RSA(7).
10 See EVP_PKEY_encapsulate(3) and EVP_PKEY_decapsulate(3) for more info.
11
12 RSA KEM parameters
13 "operation" (OSSL_KEM_PARAM_OPERATION) <UTF8 string>
14 The OpenSSL RSA Key Encapsulation Mechanism only currently supports
15 the following operation
16
17 "RSASVE"
18 The encapsulate function simply generates a secret using random
19 bytes and then encrypts the secret using the RSA public key
20 (with no padding). The decapsulate function recovers the
21 secret using the RSA private key.
22
23 This can be set using EVP_PKEY_CTX_set_kem_op().
24
26 SP800-56Br2
27 Section 7.2.1.2 RSASVE Generate Operation (RSASVE.GENERATE).
28 Section 7.2.1.3 RSASVE Recovery Operation (RSASVE.RECOVER).
29
31 EVP_PKEY_CTX_set_kem_op(3), EVP_PKEY_encapsulate(3),
32 EVP_PKEY_decapsulate(3) EVP_KEYMGMT(3), EVP_PKEY(3),
33 provider-keymgmt(7)
34
36 This functionality was added in OpenSSL 3.0.
37
39 Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
40
41 Licensed under the Apache License 2.0 (the "License"). You may not use
42 this file except in compliance with the License. You can obtain a copy
43 in the file LICENSE in the source distribution or at
44 <https://www.openssl.org/source/license.html>.
45
46
47
483.0.9 2023-07-27 EVP_KEM-RSA(7ossl)