11#include <botan/hash.h>
13#include <botan/internal/ffi_mp.h>
14#include <botan/internal/ffi_pkey.h>
15#include <botan/internal/ffi_rng.h>
16#include <botan/internal/ffi_util.h>
18#if defined(BOTAN_HAS_DL_GROUP)
19 #include <botan/dl_group.h>
22#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
23 #include <botan/ecc_key.h>
26#if defined(BOTAN_HAS_RSA)
27 #include <botan/rsa.h>
30#if defined(BOTAN_HAS_ELGAMAL)
31 #include <botan/elgamal.h>
34#if defined(BOTAN_HAS_DSA)
35 #include <botan/dsa.h>
38#if defined(BOTAN_HAS_ECDSA)
39 #include <botan/ecdsa.h>
42#if defined(BOTAN_HAS_SM2)
43 #include <botan/sm2.h>
46#if defined(BOTAN_HAS_ECDH)
47 #include <botan/ecdh.h>
50#if defined(BOTAN_HAS_X25519)
51 #include <botan/x25519.h>
54#if defined(BOTAN_HAS_X448)
55 #include <botan/x448.h>
58#if defined(BOTAN_HAS_ED25519)
59 #include <botan/ed25519.h>
62#if defined(BOTAN_HAS_ED448)
63 #include <botan/ed448.h>
66#if defined(BOTAN_HAS_MCELIECE)
67 #include <botan/mceliece.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) {
112 key.reset(
new ECPrivateKey_t(null_rng, grp, scalar));
116template <
class ECPublicKey_t>
117int pubkey_load_ec(std::unique_ptr<ECPublicKey_t>& key,
120 const char* curve_name) {
121 if(curve_name ==
nullptr) {
128 key.reset(
new ECPublicKey_t(group, pt.value()));
138#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
141 if(field ==
"public_x") {
143 }
else if(field ==
"public_y") {
157#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
160 if(field ==
"public_x") {
162 }
else if(field ==
"public_y") {
182 if(field_name_cstr ==
nullptr) {
186 const std::string field_name(field_name_cstr);
192 if(field_name_cstr ==
nullptr) {
196 const std::string field_name(field_name_cstr);
204 if(n_bits < 1024 || n_bits > 16 * 1024) {
208 std::string n_str = std::to_string(n_bits);
214#if defined(BOTAN_HAS_RSA)
219 *key =
new botan_privkey_struct(std::move(rsa));
229#if defined(BOTAN_HAS_RSA)
235 auto rsa = std::make_unique<Botan::RSA_PrivateKey>(alg_id, src);
236 *key =
new botan_privkey_struct(std::move(rsa));
246#if defined(BOTAN_HAS_RSA)
249 auto rsa = std::make_unique<Botan::RSA_PublicKey>(
safe_get(n),
safe_get(e));
250 *key =
new botan_pubkey_struct(std::move(rsa));
288#if defined(BOTAN_HAS_RSA)
310#if defined(BOTAN_HAS_DSA)
312 if((rng_obj ==
nullptr) || (key ==
nullptr)) {
316 if((pbits % 64) || (qbits % 8) || (pbits < 1024) || (pbits > 3072) || (qbits < 160) || (qbits > 256)) {
323 auto dsa = std::make_unique<Botan::DSA_PrivateKey>(rng, group);
324 *key =
new botan_privkey_struct(std::move(dsa));
334#if defined(BOTAN_HAS_DSA)
339 auto dsa = std::make_unique<Botan::DSA_PrivateKey>(group,
safe_get(x));
340 *key =
new botan_privkey_struct(std::move(dsa));
350#if defined(BOTAN_HAS_DSA)
355 auto dsa = std::make_unique<Botan::DSA_PublicKey>(group,
safe_get(y));
356 *key =
new botan_pubkey_struct(std::move(dsa));
392#if defined(BOTAN_HAS_ECC_KEY)
397 if(ec_key ==
nullptr) {
412 const char* curve_name) {
413#if defined(BOTAN_HAS_ECDSA)
415 std::unique_ptr<Botan::ECDSA_PublicKey> p_key;
417 int rc = pubkey_load_ec(p_key,
safe_get(public_x),
safe_get(public_y), curve_name);
419 *key =
new botan_pubkey_struct(std::move(p_key));
431#if defined(BOTAN_HAS_ECDSA)
433 std::unique_ptr<Botan::ECDSA_PrivateKey> p_key;
434 int rc = privkey_load_ec(p_key,
safe_get(scalar), curve_name);
436 *key =
new botan_privkey_struct(std::move(p_key));
448#if defined(BOTAN_HAS_ELGAMAL)
450 if((rng_obj ==
nullptr) || (key ==
nullptr)) {
454 if((pbits < 1024) || (qbits < 160)) {
464 auto elg = std::make_unique<Botan::ElGamal_PrivateKey>(rng, group);
465 *key =
new botan_privkey_struct(std::move(elg));
475#if defined(BOTAN_HAS_ELGAMAL)
479 auto elg = std::make_unique<Botan::ElGamal_PublicKey>(group,
safe_get(y));
480 *key =
new botan_pubkey_struct(std::move(elg));
490#if defined(BOTAN_HAS_ELGAMAL)
494 auto elg = std::make_unique<Botan::ElGamal_PrivateKey>(group,
safe_get(x));
495 *key =
new botan_privkey_struct(std::move(elg));
511#if defined(BOTAN_HAS_DIFFIE_HELLMAN)
515 auto dh = std::make_unique<Botan::DH_PrivateKey>(group,
safe_get(x));
516 *key =
new botan_privkey_struct(std::move(dh));
526#if defined(BOTAN_HAS_DIFFIE_HELLMAN)
530 auto dh = std::make_unique<Botan::DH_PublicKey>(group,
safe_get(y));
531 *key =
new botan_pubkey_struct(std::move(dh));
543 if(param_str ==
nullptr) {
547 const std::string params(param_str);
549 if(params ==
"x25519" || params ==
"curve25519") {
553 if(params ==
"x448") {
563 const char* curve_name) {
564#if defined(BOTAN_HAS_ECDH)
566 std::unique_ptr<Botan::ECDH_PublicKey> p_key;
567 int rc = pubkey_load_ec(p_key,
safe_get(public_x),
safe_get(public_y), curve_name);
570 *key =
new botan_pubkey_struct(std::move(p_key));
581#if defined(BOTAN_HAS_ECDH)
583 std::unique_ptr<Botan::ECDH_PrivateKey> p_key;
584 int rc = privkey_load_ec(p_key,
safe_get(scalar), curve_name);
586 *key =
new botan_privkey_struct(std::move(p_key));
599 uint8_t out[],
size_t* out_len,
const char* ident,
const char* hash_algo,
const botan_pubkey_t key) {
600 if(out ==
nullptr || out_len ==
nullptr) {
603 if(ident ==
nullptr || hash_algo ==
nullptr || key ==
nullptr) {
607#if defined(BOTAN_HAS_SM2)
612 if(ec_key ==
nullptr) {
620 const std::string ident_str(ident);
623 const std::vector<uint8_t> za =
636 const char* curve_name) {
637#if defined(BOTAN_HAS_SM2)
639 std::unique_ptr<Botan::SM2_PublicKey> p_key;
640 if(!pubkey_load_ec(p_key,
safe_get(public_x),
safe_get(public_y), curve_name)) {
641 *key =
new botan_pubkey_struct(std::move(p_key));
653#if defined(BOTAN_HAS_SM2)
655 std::unique_ptr<Botan::SM2_PrivateKey> p_key;
656 int rc = privkey_load_ec(p_key,
safe_get(scalar), curve_name);
659 *key =
new botan_privkey_struct(std::move(p_key));
672 const char* curve_name) {
683#if defined(BOTAN_HAS_ED25519)
687 auto ed25519 = std::make_unique<Botan::Ed25519_PrivateKey>(privkey_vec);
688 *key =
new botan_privkey_struct(std::move(ed25519));
698#if defined(BOTAN_HAS_ED25519)
701 const std::vector<uint8_t> pubkey_vec(pubkey, pubkey + 32);
702 auto ed25519 = std::make_unique<Botan::Ed25519_PublicKey>(pubkey_vec);
703 *key =
new botan_pubkey_struct(std::move(ed25519));
713#if defined(BOTAN_HAS_ED25519)
716 const auto ed_key = ed->raw_private_key_bits();
717 if(ed_key.size() != 64) {
733#if defined(BOTAN_HAS_ED25519)
736 const std::vector<uint8_t>& ed_key = ed->get_public_key();
737 if(ed_key.size() != 32) {
755#if defined(BOTAN_HAS_ED448)
758 auto ed448 = std::make_unique<Botan::Ed448_PrivateKey>(std::span(privkey, 57));
759 *key =
new botan_privkey_struct(std::move(ed448));
769#if defined(BOTAN_HAS_ED448)
772 auto ed448 = std::make_unique<Botan::Ed448_PublicKey>(std::span(pubkey, 57));
773 *key =
new botan_pubkey_struct(std::move(ed448));
783#if defined(BOTAN_HAS_ED448)
786 const auto ed_key = ed->raw_private_key_bits();
800#if defined(BOTAN_HAS_ED448)
803 const auto ed_key = ed->public_key_bits();
819#if defined(BOTAN_HAS_X25519)
823 auto x25519 = std::make_unique<Botan::X25519_PrivateKey>(privkey_vec);
824 *key =
new botan_privkey_struct(std::move(x25519));
834#if defined(BOTAN_HAS_X25519)
837 const std::vector<uint8_t> pubkey_vec(pubkey, pubkey + 32);
838 auto x25519 = std::make_unique<Botan::X25519_PublicKey>(pubkey_vec);
839 *key =
new botan_pubkey_struct(std::move(x25519));
849#if defined(BOTAN_HAS_X25519)
852 const auto x25519_key = x25519->raw_private_key_bits();
853 if(x25519_key.size() != 32) {
869#if defined(BOTAN_HAS_X25519)
872 const std::vector<uint8_t>& x25519_key = x25519->public_value();
873 if(x25519_key.size() != 32) {
891#if defined(BOTAN_HAS_X448)
894 auto x448 = std::make_unique<Botan::X448_PrivateKey>(std::span(privkey, 56));
895 *key =
new botan_privkey_struct(std::move(x448));
905#if defined(BOTAN_HAS_X448)
908 auto x448 = std::make_unique<Botan::X448_PublicKey>(std::span(pubkey, 56));
909 *key =
new botan_pubkey_struct(std::move(x448));
919#if defined(BOTAN_HAS_X448)
922 const auto x448_key = x448->raw_private_key_bits();
936#if defined(BOTAN_HAS_X448)
939 const std::vector<uint8_t>& x448_key = x448->public_value();
957#if defined(BOTAN_HAS_KYBER)
964 *key =
new botan_privkey_struct(std::move(kyber512));
971 *key =
new botan_privkey_struct(std::move(kyber768));
978 *key =
new botan_privkey_struct(std::move(kyber1024));
992#if defined(BOTAN_HAS_KYBER)
997 const std::vector<uint8_t> pubkey_vec(pubkey, pubkey + 800);
999 *key =
new botan_pubkey_struct(std::move(kyber512));
1004 const std::vector<uint8_t> pubkey_vec(pubkey, pubkey + 1184);
1006 *key =
new botan_pubkey_struct(std::move(kyber768));
1011 const std::vector<uint8_t> pubkey_vec(pubkey, pubkey + 1568);
1013 *key =
new botan_pubkey_struct(std::move(kyber1024));
1027#if defined(BOTAN_HAS_KYBER)
1042#if defined(BOTAN_HAS_KYBER)
1061#if defined(BOTAN_HAS_ML_KEM)
1062 if(key ==
nullptr || privkey ==
nullptr || mlkem_mode ==
nullptr) {
1070 if(!mode.is_ml_kem()) {
1074 auto mlkem_key = std::make_unique<Botan::ML_KEM_PrivateKey>(std::span{privkey, key_len}, mode);
1075 *key =
new botan_privkey_struct(std::move(mlkem_key));
1085#if defined(BOTAN_HAS_ML_KEM)
1086 if(key ==
nullptr || pubkey ==
nullptr || mlkem_mode ==
nullptr) {
1094 if(!mode.is_ml_kem()) {
1098 auto mlkem_key = std::make_unique<Botan::ML_KEM_PublicKey>(std::span{pubkey, key_len}, mode.mode());
1099 *key =
new botan_pubkey_struct(std::move(mlkem_key));
1113#if defined(BOTAN_HAS_ML_DSA)
1114 if(key ==
nullptr || privkey ==
nullptr || mldsa_mode ==
nullptr) {
1122 if(!mode.is_ml_dsa()) {
1126 auto mldsa_key = std::make_unique<Botan::ML_DSA_PrivateKey>(std::span{privkey, key_len}, mode);
1127 *key =
new botan_privkey_struct(std::move(mldsa_key));
1137#if defined(BOTAN_HAS_ML_DSA)
1138 if(key ==
nullptr || pubkey ==
nullptr || mldsa_mode ==
nullptr) {
1146 if(!mode.is_ml_dsa()) {
1150 auto mldsa_key = std::make_unique<Botan::ML_DSA_PublicKey>(std::span{pubkey, key_len}, mode);
1151 *key =
new botan_pubkey_struct(std::move(mldsa_key));
1165#if defined(BOTAN_HAS_SLH_DSA_WITH_SHA2) || defined(BOTAN_HAS_SLH_DSA_WITH_SHAKE)
1166 if(key ==
nullptr || privkey ==
nullptr || slhdsa_mode ==
nullptr) {
1173 auto mode = Botan::SLH_DSA_Parameters::create(slhdsa_mode);
1174 if(!mode.is_slh_dsa()) {
1178 auto slhdsa_key = std::make_unique<Botan::SLH_DSA_PrivateKey>(std::span{privkey, key_len}, mode);
1179 *key =
new botan_privkey_struct(std::move(slhdsa_key));
1189#if defined(BOTAN_HAS_SLH_DSA_WITH_SHA2) || defined(BOTAN_HAS_SLH_DSA_WITH_SHAKE)
1190 if(key ==
nullptr || pubkey ==
nullptr || slhdsa_mode ==
nullptr) {
1197 auto mode = Botan::SLH_DSA_Parameters::create(slhdsa_mode);
1198 if(!mode.is_slh_dsa()) {
1202 auto mldsa_key = std::make_unique<Botan::SLH_DSA_PublicKey>(std::span{pubkey, key_len}, mode);
1203 *key =
new botan_pubkey_struct(std::move(mldsa_key));
1217#if defined(BOTAN_HAS_FRODOKEM)
1218 if(key ==
nullptr || privkey ==
nullptr || frodo_mode ==
nullptr) {
1226 auto frodo_key = std::make_unique<Botan::FrodoKEM_PrivateKey>(std::span{privkey, key_len}, mode);
1227 *key =
new botan_privkey_struct(std::move(frodo_key));
1237#if defined(BOTAN_HAS_FRODOKEM)
1238 if(key ==
nullptr || pubkey ==
nullptr || frodo_mode ==
nullptr) {
1246 auto frodo_key = std::make_unique<Botan::FrodoKEM_PublicKey>(std::span{pubkey, key_len}, mode);
1247 *key =
new botan_pubkey_struct(std::move(frodo_key));
1261 const uint8_t privkey[],
1263 const char* cmce_mode) {
1264#if defined(BOTAN_HAS_CLASSICMCELIECE)
1265 if(key ==
nullptr || privkey ==
nullptr || cmce_mode ==
nullptr) {
1273 auto cmce_key = std::make_unique<Botan::Classic_McEliece_PrivateKey>(std::span{privkey, key_len}, mode);
1274 *key =
new botan_privkey_struct(std::move(cmce_key));
1284 const uint8_t pubkey[],
1286 const char* cmce_mode) {
1287#if defined(BOTAN_HAS_CLASSICMCELIECE)
1288 if(key ==
nullptr || pubkey ==
nullptr || cmce_mode ==
nullptr) {
1296 auto cmce_key = std::make_unique<Botan::Classic_McEliece_PublicKey>(std::span{pubkey, key_len}, mode);
1297 *key =
new botan_pubkey_struct(std::move(cmce_key));
1307#if defined(BOTAN_HAS_ECC_PUBLIC_KEY_CRYPTO)
1310 auto pt = ecc->_public_ec_point().serialize_uncompressed();
1323 const std::string mce_params = std::to_string(n) +
"," + std::to_string(t);
1335 BOTAN_UNUSED(mce_key_obj, aead, ct, ct_len, ad, ad_len, out, out_len);
1348 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 EC_Group from_name(std::string_view name)
bool used_explicit_encoding() const
const EC_Group & domain() const
const EC_AffinePoint & _public_ec_point() const
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
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
@ 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_pubkey_dsa_get_p(botan_mp_t p, botan_pubkey_t key)
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_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_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_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_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_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 write_str_output(uint8_t out[], size_t *out_len, std::string_view str)
T & safe_get(botan_struct< T, M > *p)
int invoke_view_callback(botan_view_bin_fn view, botan_view_ctx ctx, const std::vector< uint8_t, Alloc > &buf)
int ffi_guard_thunk(const char *func_name, const std::function< int()> &thunk)
int write_vec_output(uint8_t out[], size_t *out_len, const std::vector< uint8_t, Alloc > &buf)
DilithiumMode ML_DSA_Mode
std::vector< T, secure_allocator< T > > secure_vector
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)