11#include <botan/assert.h>
12#include <botan/ec_group.h>
13#include <botan/hash.h>
14#include <botan/mem_ops.h>
16#include <botan/internal/ffi_ec.h>
17#include <botan/internal/ffi_mp.h>
18#include <botan/internal/ffi_pkey.h>
19#include <botan/internal/ffi_rng.h>
20#include <botan/internal/ffi_util.h>
22#if defined(BOTAN_HAS_DL_GROUP)
23 #include <botan/dl_group.h>
26#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
27 #include <botan/ecc_key.h>
30#if defined(BOTAN_HAS_RSA)
31 #include <botan/rsa.h>
34#if defined(BOTAN_HAS_ELGAMAL)
35 #include <botan/elgamal.h>
38#if defined(BOTAN_HAS_DSA)
39 #include <botan/dsa.h>
42#if defined(BOTAN_HAS_ECDSA)
43 #include <botan/ecdsa.h>
46#if defined(BOTAN_HAS_SM2)
47 #include <botan/sm2.h>
50#if defined(BOTAN_HAS_ECDH)
51 #include <botan/ecdh.h>
54#if defined(BOTAN_HAS_X25519)
55 #include <botan/x25519.h>
58#if defined(BOTAN_HAS_X448)
59 #include <botan/x448.h>
62#if defined(BOTAN_HAS_ED25519)
63 #include <botan/ed25519.h>
66#if defined(BOTAN_HAS_ED448)
67 #include <botan/ed448.h>
70#if defined(BOTAN_HAS_DIFFIE_HELLMAN)
74#if defined(BOTAN_HAS_KYBER) || defined(BOTAN_HAS_KYBER_90S)
75 #include <botan/kyber.h>
78#if defined(BOTAN_HAS_ML_KEM)
79 #include <botan/ml_kem.h>
82#if defined(BOTAN_HAS_FRODOKEM)
83 #include <botan/frodokem.h>
86#if defined(BOTAN_HAS_ML_DSA)
87 #include <botan/ml_dsa.h>
90#if defined(BOTAN_HAS_SLH_DSA_WITH_SHA2) || defined(BOTAN_HAS_SLH_DSA_WITH_SHAKE)
91 #include <botan/slh_dsa.h>
94#if defined(BOTAN_HAS_CLASSICMCELIECE)
95 #include <botan/cmce.h>
100#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
104template <
class ECPrivateKey_t>
105int privkey_load_ec(std::unique_ptr<ECPrivateKey_t>& key,
const Botan::BigInt& scalar,
const char* curve_name) {
106 if(curve_name ==
nullptr) {
115 key.reset(
new ECPrivateKey_t(null_rng, grp, scalar));
119template <
class ECPublicKey_t>
120int pubkey_load_ec(std::unique_ptr<ECPublicKey_t>& key,
123 const char* curve_name) {
124 if(curve_name ==
nullptr) {
135 key.reset(
new ECPublicKey_t(group, pt.value()));
142template <
class ECPublicKey_t>
143int pubkey_load_ec_sec1(std::unique_ptr<ECPublicKey_t>& key,
144 std::span<const uint8_t> sec1,
145 std::string_view curve_name) {
153 key.reset(
new ECPublicKey_t(group, pt.value()));
163#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
166 if(field ==
"public_x") {
168 }
else if(field ==
"public_y") {
182#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
185 if(field ==
"public_x") {
187 }
else if(field ==
"public_y") {
207 if(field_name_cstr ==
nullptr) {
211 const std::string field_name(field_name_cstr);
217 if(field_name_cstr ==
nullptr) {
221 const std::string field_name(field_name_cstr);
229 if(n_bits < 1024 || n_bits > 16 * 1024) {
233 const std::string n_str = std::to_string(n_bits);
239#if defined(BOTAN_HAS_RSA)
256#if defined(BOTAN_HAS_RSA)
264 auto rsa = std::make_unique<Botan::RSA_PrivateKey>(alg_id, std::span{bits, len});
274#if defined(BOTAN_HAS_RSA)
280 auto rsa = std::make_unique<Botan::RSA_PublicKey>(
safe_get(n),
safe_get(e));
290#if defined(BOTAN_HAS_RSA)
298 auto rsa = std::make_unique<Botan::RSA_PublicKey>(alg_id, std::span{bits, len});
336#if defined(BOTAN_HAS_RSA)
361#if defined(BOTAN_HAS_DSA)
367 if((pbits % 64 != 0) || (qbits % 8 != 0) || (pbits < 1024) || (pbits > 3072) || (qbits < 160) || (qbits > 256)) {
374 auto dsa = std::make_unique<Botan::DSA_PrivateKey>(rng, group);
384#if defined(BOTAN_HAS_DSA)
392 auto dsa = std::make_unique<Botan::DSA_PrivateKey>(group,
safe_get(x));
402#if defined(BOTAN_HAS_DSA)
410 auto dsa = std::make_unique<Botan::DSA_PublicKey>(group,
safe_get(y));
446#if defined(BOTAN_HAS_ECC_KEY)
451 if(ec_key ==
nullptr) {
468 const char* curve_name) {
469#if defined(BOTAN_HAS_ECDSA)
476 std::unique_ptr<Botan::ECDSA_PublicKey> p_key;
478 const int rc = pubkey_load_ec(p_key,
safe_get(public_x),
safe_get(public_y), curve_name);
492#if defined(BOTAN_HAS_ECDSA)
499 std::unique_ptr<Botan::ECDSA_PublicKey> p_key;
501 const int rc = pubkey_load_ec_sec1(p_key, {sec1, sec1_len}, curve_name);
515#if defined(BOTAN_HAS_ECDSA)
522 std::unique_ptr<Botan::ECDSA_PrivateKey> p_key;
523 const int rc = privkey_load_ec(p_key,
safe_get(scalar), curve_name);
537#if defined(BOTAN_HAS_ELGAMAL)
543 if(pbits < 1024 || qbits < 160) {
553 auto elg = std::make_unique<Botan::ElGamal_PrivateKey>(rng, group);
563#if defined(BOTAN_HAS_ELGAMAL)
570 auto elg = std::make_unique<Botan::ElGamal_PublicKey>(group,
safe_get(y));
580#if defined(BOTAN_HAS_ELGAMAL)
587 auto elg = std::make_unique<Botan::ElGamal_PrivateKey>(group,
safe_get(x));
603#if defined(BOTAN_HAS_DIFFIE_HELLMAN)
610 auto dh = std::make_unique<Botan::DH_PrivateKey>(group,
safe_get(x));
620#if defined(BOTAN_HAS_DIFFIE_HELLMAN)
627 auto dh = std::make_unique<Botan::DH_PublicKey>(group,
safe_get(y));
644 const std::string params(param_str);
646 if(params ==
"X25519" || params ==
"x25519" || params ==
"curve25519") {
650 if(params ==
"X448" || params ==
"x448") {
660 const char* curve_name) {
661#if defined(BOTAN_HAS_ECDH)
667 std::unique_ptr<Botan::ECDH_PublicKey> p_key;
668 const int rc = pubkey_load_ec(p_key,
safe_get(public_x),
safe_get(public_y), curve_name);
682#if defined(BOTAN_HAS_ECDH)
689 std::unique_ptr<Botan::ECDH_PublicKey> p_key;
691 const int rc = pubkey_load_ec_sec1(p_key, {sec1, sec1_len}, curve_name);
705#if defined(BOTAN_HAS_ECDH)
711 std::unique_ptr<Botan::ECDH_PrivateKey> p_key;
712 const int rc = privkey_load_ec(p_key,
safe_get(scalar), curve_name);
727 uint8_t out[],
size_t* out_len,
const char* ident,
const char* hash_algo,
const botan_pubkey_t key) {
732#if defined(BOTAN_HAS_SM2)
737 if(ec_key ==
nullptr) {
745 const std::string ident_str(ident);
762 const char* curve_name) {
763#if defined(BOTAN_HAS_SM2)
770 std::unique_ptr<Botan::SM2_PublicKey> p_key;
771 if(pubkey_load_ec(p_key,
safe_get(public_x),
safe_get(public_y), curve_name) == 0) {
784#if defined(BOTAN_HAS_SM2)
791 std::unique_ptr<Botan::SM2_PublicKey> p_key;
793 const int rc = pubkey_load_ec_sec1(p_key, {sec1, sec1_len}, curve_name);
807#if defined(BOTAN_HAS_SM2)
814 std::unique_ptr<Botan::SM2_PrivateKey> p_key;
815 const int rc = privkey_load_ec(p_key,
safe_get(scalar), curve_name);
831 const char* curve_name) {
845#if defined(BOTAN_HAS_ECC_KEY)
848 if(ec_key ==
nullptr) {
864#if defined(BOTAN_HAS_ECC_KEY)
867 if(ec_key ==
nullptr) {
882#if defined(BOTAN_HAS_ECC_KEY)
885 if(ec_key ==
nullptr) {
899#if defined(BOTAN_HAS_ED25519)
916#if defined(BOTAN_HAS_ED25519)
922 const std::vector<uint8_t> pubkey_vec(pubkey, pubkey + 32);
923 auto ed25519 = std::make_unique<Botan::Ed25519_PublicKey>(pubkey_vec);
933 if(output ==
nullptr) {
936#if defined(BOTAN_HAS_ED25519)
939 const auto ed_key = ed->raw_private_key_bits();
940 if(ed_key.size() != 64) {
956 if(output ==
nullptr) {
959#if defined(BOTAN_HAS_ED25519)
962 const std::vector<uint8_t>& ed_key = ed->get_public_key();
963 if(ed_key.size() != 32) {
981#if defined(BOTAN_HAS_ED448)
987 auto ed448 = std::make_unique<Botan::Ed448_PrivateKey>(std::span(privkey, 57));
997#if defined(BOTAN_HAS_ED448)
1003 auto ed448 = std::make_unique<Botan::Ed448_PublicKey>(std::span(pubkey, 57));
1013 if(output ==
nullptr) {
1016#if defined(BOTAN_HAS_ED448)
1019 const auto ed_key = ed->raw_private_key_bits();
1033 if(output ==
nullptr) {
1036#if defined(BOTAN_HAS_ED448)
1039 const auto ed_key = ed->public_key_bits();
1055#if defined(BOTAN_HAS_X25519)
1056 if(key ==
nullptr) {
1061 auto x25519 = std::make_unique<Botan::X25519_PrivateKey>(std::span{privkey, 32});
1071#if defined(BOTAN_HAS_X25519)
1072 if(key ==
nullptr) {
1077 auto x25519 = std::make_unique<Botan::X25519_PublicKey>(std::span{pubkey, 32});
1087 if(output ==
nullptr) {
1090#if defined(BOTAN_HAS_X25519)
1093 const auto x25519_key = x25519->raw_private_key_bits();
1094 if(x25519_key.size() != 32) {
1110 if(output ==
nullptr) {
1113#if defined(BOTAN_HAS_X25519)
1116 Botan::copy_mem(std::span{output, 32}, x25519->raw_public_key_bits());
1131#if defined(BOTAN_HAS_X448)
1132 if(key ==
nullptr) {
1137 auto x448 = std::make_unique<Botan::X448_PrivateKey>(std::span{privkey, 56});
1147#if defined(BOTAN_HAS_X448)
1148 if(key ==
nullptr) {
1153 auto x448 = std::make_unique<Botan::X448_PublicKey>(std::span{pubkey, 56});
1163 if(output ==
nullptr) {
1166#if defined(BOTAN_HAS_X448)
1169 const auto x448_key = x448->raw_private_key_bits();
1183 if(output ==
nullptr) {
1186#if defined(BOTAN_HAS_X448)
1206#if defined(BOTAN_HAS_KYBER)
1212 const auto mode = [](
size_t len) -> std::optional<Botan::KyberMode> {
1215 }
else if(len == 2400) {
1217 }
else if(len == 3168) {
1224 if(mode.has_value()) {
1226 auto kyber = std::make_unique<Botan::Kyber_PrivateKey>(std::span{privkey, key_len}, *mode);
1239#if defined(BOTAN_HAS_KYBER)
1245 const auto mode = [](
size_t len) -> std::optional<Botan::KyberMode> {
1248 }
else if(len == 1184) {
1250 }
else if(len == 1568) {
1257 if(mode.has_value()) {
1259 auto kyber = std::make_unique<Botan::Kyber_PublicKey>(std::span{pubkey, key_len}, *mode);
1272#if defined(BOTAN_HAS_KYBER)
1287#if defined(BOTAN_HAS_KYBER)
1306#if defined(BOTAN_HAS_ML_KEM)
1315 if(!mode.is_ml_kem()) {
1319 auto mlkem_key = std::make_unique<Botan::ML_KEM_PrivateKey>(std::span{privkey, key_len}, mode);
1329#if defined(BOTAN_HAS_ML_KEM)
1338 if(!mode.is_ml_kem()) {
1342 auto mlkem_key = std::make_unique<Botan::ML_KEM_PublicKey>(std::span{pubkey, key_len}, mode.mode());
1356#if defined(BOTAN_HAS_ML_DSA)
1365 if(!mode.is_ml_dsa()) {
1369 auto mldsa_key = std::make_unique<Botan::ML_DSA_PrivateKey>(std::span{privkey, key_len}, mode);
1379#if defined(BOTAN_HAS_ML_DSA)
1388 if(!mode.is_ml_dsa()) {
1392 auto mldsa_key = std::make_unique<Botan::ML_DSA_PublicKey>(std::span{pubkey, key_len}, mode);
1406#if defined(BOTAN_HAS_SLH_DSA_WITH_SHA2) || defined(BOTAN_HAS_SLH_DSA_WITH_SHAKE)
1414 auto mode = Botan::SLH_DSA_Parameters::create(slhdsa_mode);
1415 if(!mode.is_slh_dsa()) {
1419 auto slhdsa_key = std::make_unique<Botan::SLH_DSA_PrivateKey>(std::span{privkey, key_len}, mode);
1429#if defined(BOTAN_HAS_SLH_DSA_WITH_SHA2) || defined(BOTAN_HAS_SLH_DSA_WITH_SHAKE)
1437 auto mode = Botan::SLH_DSA_Parameters::create(slhdsa_mode);
1438 if(!mode.is_slh_dsa()) {
1442 auto mldsa_key = std::make_unique<Botan::SLH_DSA_PublicKey>(std::span{pubkey, key_len}, mode);
1456#if defined(BOTAN_HAS_FRODOKEM)
1465 auto frodo_key = std::make_unique<Botan::FrodoKEM_PrivateKey>(std::span{privkey, key_len}, mode);
1475#if defined(BOTAN_HAS_FRODOKEM)
1484 auto frodo_key = std::make_unique<Botan::FrodoKEM_PublicKey>(std::span{pubkey, key_len}, mode);
1498 const uint8_t privkey[],
1500 const char* cmce_mode) {
1501#if defined(BOTAN_HAS_CLASSICMCELIECE)
1510 auto cmce_key = std::make_unique<Botan::Classic_McEliece_PrivateKey>(std::span{privkey, key_len}, mode);
1520 const uint8_t pubkey[],
1522 const char* cmce_mode) {
1523#if defined(BOTAN_HAS_CLASSICMCELIECE)
1532 auto cmce_key = std::make_unique<Botan::Classic_McEliece_PublicKey>(std::span{pubkey, key_len}, mode);
1542#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
1545 auto pt = ecc->_public_ec_point().serialize_uncompressed();
1560 const std::string mce_params = std::to_string(n) +
"," + std::to_string(t);
1572 BOTAN_UNUSED(mce_key_obj, aead, ct, ct_len, ad, ad_len, out, out_len);
1585 BOTAN_UNUSED(mce_key_obj, rng_obj, aead, pt, pt_len, ad, ad_len, out, out_len);
virtual std::string algo_name() const =0
virtual const BigInt & get_int_field(std::string_view field) const
static BigInt from_bytes(std::span< const uint8_t > bytes)
static Classic_McEliece_Parameter_Set from_string(std::string_view param_name)
Get the parameter set for a given parameter set name.
static std::optional< EC_AffinePoint > from_bigint_xy(const EC_Group &group, const BigInt &x, const BigInt &y)
static std::optional< EC_AffinePoint > deserialize(const EC_Group &group, std::span< const uint8_t > bytes)
static EC_Group from_name(std::string_view name)
bool used_explicit_encoding() const
static bool supports_named_group(std::string_view name)
const EC_Scalar & _private_key() const
const EC_Group & domain() const
const EC_AffinePoint & _public_ec_point() const
static Ed25519_PrivateKey from_seed(std::span< const uint8_t > seed)
A private key for Ed448/Ed448ph according to RFC 8032.
A public key for Ed448/Ed448ph according to RFC 8032.
static std::unique_ptr< HashFunction > create_or_throw(std::string_view algo_spec, std::string_view provider="")
A private key for the X448 key agreement scheme according to RFC 7748.
A public key for the X448 key agreement scheme according to RFC 7748.
struct botan_pubkey_struct * botan_pubkey_t
struct botan_privkey_struct * botan_privkey_t
struct botan_ec_group_struct * botan_ec_group_t
int(* botan_view_bin_fn)(botan_view_ctx view_ctx, const uint8_t *data, size_t len)
int botan_privkey_create(botan_privkey_t *key, const char *algo_name, const char *algo_params, botan_rng_t rng)
#define BOTAN_PRIVKEY_EXPORT_FLAG_PEM
struct botan_mp_struct * botan_mp_t
struct botan_rng_struct * botan_rng_t
#define BOTAN_PRIVKEY_EXPORT_FLAG_DER
struct botan_ec_scalar_struct * botan_ec_scalar_t
@ BOTAN_FFI_ERROR_NOT_IMPLEMENTED
@ BOTAN_FFI_ERROR_UNKNOWN_ERROR
@ BOTAN_FFI_ERROR_BAD_FLAG
@ BOTAN_FFI_ERROR_NULL_POINTER
@ BOTAN_FFI_ERROR_INSUFFICIENT_BUFFER_SPACE
@ BOTAN_FFI_ERROR_BAD_PARAMETER
int botan_privkey_create_elgamal(botan_privkey_t *key, botan_rng_t rng_obj, size_t pbits, size_t qbits)
int botan_pubkey_rsa_get_n(botan_mp_t n, botan_pubkey_t key)
int botan_privkey_load_x448(botan_privkey_t *key, const uint8_t privkey[56])
int botan_pubkey_get_field(botan_mp_t output, botan_pubkey_t key, const char *field_name_cstr)
int botan_pubkey_load_ml_dsa(botan_pubkey_t *key, const uint8_t pubkey[], size_t key_len, const char *mldsa_mode)
int botan_privkey_load_ecdh(botan_privkey_t *key, const botan_mp_t scalar, const char *curve_name)
int botan_privkey_view_kyber_raw_key(botan_privkey_t key, botan_view_ctx ctx, botan_view_bin_fn view)
int botan_pubkey_load_dh(botan_pubkey_t *key, botan_mp_t p, botan_mp_t g, botan_mp_t y)
int botan_pubkey_ed25519_get_pubkey(botan_pubkey_t key, uint8_t output[32])
int botan_privkey_rsa_get_privkey(botan_privkey_t rsa_key, uint8_t out[], size_t *out_len, uint32_t flags)
int botan_privkey_load_rsa_pkcs1(botan_privkey_t *key, const uint8_t bits[], size_t len)
int botan_pubkey_load_sm2(botan_pubkey_t *key, const botan_mp_t public_x, const botan_mp_t public_y, const char *curve_name)
int botan_pubkey_load_slh_dsa(botan_pubkey_t *key, const uint8_t pubkey[], size_t key_len, const char *slhdsa_mode)
int botan_pubkey_sm2_compute_za(uint8_t out[], size_t *out_len, const char *ident, const char *hash_algo, const botan_pubkey_t key)
int botan_pubkey_load_classic_mceliece(botan_pubkey_t *key, const uint8_t pubkey[], size_t key_len, const char *cmce_mode)
int botan_privkey_load_classic_mceliece(botan_privkey_t *key, const uint8_t privkey[], size_t key_len, const char *cmce_mode)
int botan_privkey_load_x25519(botan_privkey_t *key, const uint8_t privkey[32])
int botan_ec_privkey_get_private_key(botan_privkey_t key, botan_ec_scalar_t *value)
int botan_pubkey_dsa_get_p(botan_mp_t p, botan_pubkey_t key)
int botan_pubkey_load_ecdh_sec1(botan_pubkey_t *key, const uint8_t sec1[], size_t sec1_len, const char *curve_name)
int botan_privkey_rsa_get_q(botan_mp_t q, botan_privkey_t key)
int botan_pubkey_ecc_key_used_explicit_encoding(botan_pubkey_t key)
int botan_pubkey_load_frodokem(botan_pubkey_t *key, const uint8_t pubkey[], size_t key_len, const char *frodo_mode)
int botan_privkey_ed25519_get_privkey(botan_privkey_t key, uint8_t output[64])
int botan_pubkey_load_rsa_pkcs1(botan_pubkey_t *key, const uint8_t bits[], size_t len)
int botan_privkey_load_sm2_enc(botan_privkey_t *key, const botan_mp_t scalar, const char *curve_name)
int botan_privkey_get_field(botan_mp_t output, botan_privkey_t key, const char *field_name_cstr)
int botan_pubkey_x448_get_pubkey(botan_pubkey_t key, uint8_t output[56])
int botan_privkey_load_rsa(botan_privkey_t *key, botan_mp_t rsa_p, botan_mp_t rsa_q, botan_mp_t rsa_e)
int botan_pubkey_dsa_get_y(botan_mp_t y, botan_pubkey_t key)
int botan_pubkey_load_ml_kem(botan_pubkey_t *key, const uint8_t pubkey[], size_t key_len, const char *mlkem_mode)
int botan_privkey_load_ed448(botan_privkey_t *key, const uint8_t privkey[57])
int botan_pubkey_view_ec_public_point(const botan_pubkey_t key, botan_view_ctx ctx, botan_view_bin_fn view)
int botan_privkey_load_dh(botan_privkey_t *key, botan_mp_t p, botan_mp_t g, botan_mp_t x)
int botan_privkey_load_sm2(botan_privkey_t *key, const botan_mp_t scalar, const char *curve_name)
int botan_pubkey_load_ed25519(botan_pubkey_t *key, const uint8_t pubkey[32])
int botan_privkey_load_ecdsa(botan_privkey_t *key, const botan_mp_t scalar, const char *curve_name)
int botan_mceies_encrypt(botan_pubkey_t mce_key_obj, botan_rng_t rng_obj, const char *aead, const uint8_t pt[], size_t pt_len, const uint8_t ad[], size_t ad_len, uint8_t out[], size_t *out_len)
int botan_pubkey_load_sm2_sec1(botan_pubkey_t *key, const uint8_t sec1[], size_t sec1_len, const char *curve_name)
int botan_pubkey_x25519_get_pubkey(botan_pubkey_t key, uint8_t output[32])
int botan_pubkey_load_elgamal(botan_pubkey_t *key, botan_mp_t p, botan_mp_t g, botan_mp_t y)
int botan_privkey_load_slh_dsa(botan_privkey_t *key, const uint8_t privkey[], size_t key_len, const char *slhdsa_mode)
int botan_privkey_create_dsa(botan_privkey_t *key, botan_rng_t rng_obj, size_t pbits, size_t qbits)
int botan_privkey_rsa_get_p(botan_mp_t p, botan_privkey_t key)
int botan_privkey_create_mceliece(botan_privkey_t *key_obj, botan_rng_t rng_obj, size_t n, size_t t)
int botan_pubkey_load_ed448(botan_pubkey_t *key, const uint8_t pubkey[57])
int botan_privkey_load_ml_kem(botan_privkey_t *key, const uint8_t privkey[], size_t key_len, const char *mlkem_mode)
int botan_privkey_create_ecdh(botan_privkey_t *key_obj, botan_rng_t rng_obj, const char *param_str)
int botan_privkey_rsa_get_d(botan_mp_t d, botan_privkey_t key)
int botan_pubkey_load_sm2_enc(botan_pubkey_t *key, const botan_mp_t public_x, const botan_mp_t public_y, const char *curve_name)
int botan_mceies_decrypt(botan_privkey_t mce_key_obj, const char *aead, const uint8_t ct[], size_t ct_len, const uint8_t ad[], size_t ad_len, uint8_t out[], size_t *out_len)
int botan_pubkey_load_x25519(botan_pubkey_t *key, const uint8_t pubkey[32])
int botan_privkey_load_elgamal(botan_privkey_t *key, botan_mp_t p, botan_mp_t g, botan_mp_t x)
int botan_privkey_create_rsa(botan_privkey_t *key_obj, botan_rng_t rng_obj, size_t n_bits)
int botan_pubkey_load_dsa(botan_pubkey_t *key, botan_mp_t p, botan_mp_t q, botan_mp_t g, botan_mp_t y)
int botan_pubkey_load_kyber(botan_pubkey_t *key, const uint8_t pubkey[], size_t key_len)
int botan_ec_pubkey_get_group(botan_pubkey_t key, botan_ec_group_t *ec_group)
int botan_pubkey_ed448_get_pubkey(botan_pubkey_t key, uint8_t output[57])
int botan_privkey_create_dh(botan_privkey_t *key_obj, botan_rng_t rng_obj, const char *param_str)
int botan_ec_privkey_get_group(botan_privkey_t key, botan_ec_group_t *ec_group)
int botan_privkey_load_dsa(botan_privkey_t *key, botan_mp_t p, botan_mp_t q, botan_mp_t g, botan_mp_t x)
int botan_privkey_rsa_get_n(botan_mp_t n, botan_privkey_t key)
int botan_privkey_load_kyber(botan_privkey_t *key, const uint8_t privkey[], size_t key_len)
int botan_pubkey_rsa_get_e(botan_mp_t e, botan_pubkey_t key)
int botan_pubkey_load_ecdsa_sec1(botan_pubkey_t *key, const uint8_t sec1[], size_t sec1_len, const char *curve_name)
int botan_pubkey_dsa_get_g(botan_mp_t g, botan_pubkey_t key)
int botan_pubkey_dsa_get_q(botan_mp_t q, botan_pubkey_t key)
int botan_privkey_load_frodokem(botan_privkey_t *key, const uint8_t privkey[], size_t key_len, const char *frodo_mode)
int botan_pubkey_load_ecdsa(botan_pubkey_t *key, const botan_mp_t public_x, const botan_mp_t public_y, const char *curve_name)
int botan_pubkey_load_ecdh(botan_pubkey_t *key, const botan_mp_t public_x, const botan_mp_t public_y, const char *curve_name)
int botan_privkey_load_ml_dsa(botan_privkey_t *key, const uint8_t privkey[], size_t key_len, const char *mldsa_mode)
int botan_privkey_x448_get_privkey(botan_privkey_t key, uint8_t output[56])
int botan_privkey_load_ed25519(botan_privkey_t *key, const uint8_t privkey[32])
int botan_privkey_rsa_get_e(botan_mp_t e, botan_privkey_t key)
int botan_privkey_x25519_get_privkey(botan_privkey_t key, uint8_t output[32])
int botan_privkey_ed448_get_privkey(botan_privkey_t key, uint8_t output[57])
int botan_privkey_dsa_get_x(botan_mp_t x, botan_privkey_t key)
int botan_pubkey_load_rsa(botan_pubkey_t *key, botan_mp_t n, botan_mp_t e)
int botan_privkey_create_ecdsa(botan_privkey_t *key_obj, botan_rng_t rng_obj, const char *param_str)
int botan_pubkey_view_kyber_raw_key(botan_pubkey_t key, botan_view_ctx ctx, botan_view_bin_fn view)
int botan_pubkey_load_x448(botan_pubkey_t *key, const uint8_t pubkey[56])
#define BOTAN_FFI_VISIT(obj, lambda)
std::string encode(const uint8_t der[], size_t length, std::string_view label, size_t width)
int invoke_view_callback(botan_view_bin_fn view, botan_view_ctx ctx, std::span< const uint8_t > buf)
T & safe_get(botan_struct< T, M > *p)
BOTAN_FFI_ERROR ffi_new_object(T *obj, Args &&... args)
int ffi_guard_thunk(const char *func_name, T thunk)
int write_vec_output(uint8_t out[], size_t *out_len, std::span< const uint8_t > buf)
int write_str_output(char out[], size_t *out_len, const std::string &str)
DilithiumMode ML_DSA_Mode
constexpr void copy_mem(T *out, const T *in, size_t n)
std::vector< uint8_t > sm2_compute_za(HashFunction &hash, std::string_view user_id, const EC_Group &group, const EC_AffinePoint &pubkey)
bool any_null_pointers(Ptrs... ptr)