71#define BOTAN_FFI_API_VERSION 20240408
80 #define BOTAN_FFI_EXPORT(maj, min) BOTAN_DLL
82 #if defined(__has_attribute)
83 #if __has_attribute(visibility)
84 #define BOTAN_FFI_EXPORT(maj, min) __attribute__((visibility("default")))
86 #elif defined(_MSC_VER) && !defined(BOTAN_IS_BEING_BUILT)
87 #define BOTAN_FFI_EXPORT(maj, min) __declspec(dllimport)
89 #define BOTAN_FFI_EXPORT(maj, min)
93#if !defined(BOTAN_NO_DEPRECATED_WARNINGS)
94 #if defined(__has_attribute)
95 #if __has_attribute(deprecated)
96 #define BOTAN_FFI_DEPRECATED(msg) __attribute__((deprecated(msg)))
98 #elif defined(_MSC_VER)
99 #define BOTAN_FFI_DEPRECATED(msg) __declspec(deprecated(msg))
103#if !defined(BOTAN_FFI_DEPRECATED)
104 #define BOTAN_FFI_DEPRECATED(msg)
237#define BOTAN_FFI_HEX_LOWER_CASE 1
297 const
char* rng_name,
299 int (*get_cb)(
void* context, uint8_t* out,
size_t out_len),
300 int (*add_entropy_cb)(
void* context, const uint8_t input[],
size_t length),
301 void (*destroy_cb)(
void* context));
522 size_t* out_minimum_keylength,
523 size_t* out_maximum_keylength,
524 size_t* out_keylength_modulo);
538#define BOTAN_CIPHER_INIT_FLAG_MASK_DIRECTION 1
539#define BOTAN_CIPHER_INIT_FLAG_ENCRYPT 0
540#define BOTAN_CIPHER_INIT_FLAG_DECRYPT 1
633#define BOTAN_CIPHER_UPDATE_FLAG_FINAL (1U << 0)
662 size_t* output_written,
663 const uint8_t input_bytes[],
665 size_t* input_consumed);
698 const
char* passphrase,
699 const uint8_t salt[],
731 const
char* passphrase,
732 const uint8_t salt[],
734 size_t milliseconds_to_run,
735 size_t* out_iterations_used);
758 const
char* passphrase,
759 size_t passphrase_len,
760 const uint8_t salt[],
786 const
char* passphrase,
787 size_t passphrase_len,
788 const uint8_t salt[],
800 const
char* passphrase,
801 const uint8_t salt[],
824 const uint8_t secret[],
826 const uint8_t salt[],
828 const uint8_t label[],
893 size_t* out_minimum_keylength,
894 size_t* out_maximum_keylength,
895 size_t* out_keylength_modulo);
1082 uint8_t* out,
size_t* out_len, const
char* password,
botan_rng_t rng,
size_t work_factor, uint32_t flags);
1110#define BOTAN_CHECK_KEY_EXPENSIVE_TESTS 1
1180#define BOTAN_PRIVKEY_EXPORT_FLAG_DER 0
1181#define BOTAN_PRIVKEY_EXPORT_FLAG_PEM 1
1182#define BOTAN_PRIVKEY_EXPORT_FLAG_RAW 2
1214BOTAN_FFI_EXPORT(2, 0)
1215int botan_privkey_export_encrypted(botan_privkey_t key,
1219 const char* passphrase,
1220 const char* encryption_algo,
1224* Export a private key, running PBKDF for specified amount of time
1225* @param key the private key to export
1227* Note: starting in 3.0, the output iterations count is not provided
1229BOTAN_FFI_EXPORT(2, 0)
1230int botan_privkey_export_encrypted_pbkdf_msec(botan_privkey_t key,
1234 const char* passphrase,
1235 uint32_t pbkdf_msec_runtime,
1236 size_t* pbkdf_iterations_out,
1237 const char* cipher_algo,
1238 const char* pbkdf_algo,
1244BOTAN_FFI_EXPORT(2, 0)
1245int botan_privkey_export_encrypted_pbkdf_iter(botan_privkey_t key,
1249 const char* passphrase,
1250 size_t pbkdf_iterations,
1251 const char* cipher_algo,
1252 const char* pbkdf_algo,
1261BOTAN_FFI_EXPORT(3, 0)
1262int botan_privkey_view_encrypted_der(botan_privkey_t key,
1264 const char* passphrase,
1265 const char* cipher_algo,
1266 const char* pbkdf_algo,
1267 size_t pbkdf_iterations,
1269 botan_view_bin_fn view);
1276BOTAN_FFI_EXPORT(3, 0)
1277int botan_privkey_view_encrypted_der_timed(botan_privkey_t key,
1279 const char* passphrase,
1280 const char* cipher_algo,
1281 const char* pbkdf_algo,
1282 size_t pbkdf_runtime_msec,
1284 botan_view_bin_fn view);
1292BOTAN_FFI_EXPORT(3, 0)
1293int botan_privkey_view_encrypted_pem(botan_privkey_t key,
1295 const char* passphrase,
1296 const char* cipher_algo,
1297 const char* pbkdf_algo,
1298 size_t pbkdf_iterations,
1300 botan_view_str_fn view);
1307BOTAN_FFI_EXPORT(3, 0)
1308int botan_privkey_view_encrypted_pem_timed(botan_privkey_t key,
1310 const char* passphrase,
1311 const char* cipher_algo,
1312 const char* pbkdf_algo,
1313 size_t pbkdf_runtime_msec,
1315 botan_view_str_fn view);
1317typedef struct botan_pubkey_struct* botan_pubkey_t;
1319BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_load(botan_pubkey_t* key, const uint8_t bits[], size_t len);
1321BOTAN_FFI_EXPORT(2, 0) int botan_privkey_export_pubkey(botan_pubkey_t* out, botan_privkey_t in);
1323BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_export(botan_pubkey_t key, uint8_t out[], size_t* out_len, uint32_t flags);
1328BOTAN_FFI_EXPORT(3, 0) int botan_pubkey_view_der(botan_pubkey_t key, botan_view_ctx ctx, botan_view_bin_fn view);
1333BOTAN_FFI_EXPORT(3, 0) int botan_pubkey_view_pem(botan_pubkey_t key, botan_view_ctx ctx, botan_view_str_fn view);
1338BOTAN_FFI_EXPORT(3, 6) int botan_pubkey_view_raw(botan_pubkey_t key, botan_view_ctx ctx, botan_view_bin_fn view);
1340BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_algo_name(botan_pubkey_t key, char out[], size_t* out_len);
1345BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_check_key(botan_pubkey_t key, botan_rng_t rng, uint32_t flags);
1347BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_estimated_strength(botan_pubkey_t key, size_t* estimate);
1349BOTAN_FFI_EXPORT(2, 0)
1350int botan_pubkey_fingerprint(botan_pubkey_t key, const char* hash, uint8_t out[], size_t* out_len);
1355BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_destroy(botan_pubkey_t key);
1358* Get arbitrary named fields from public or private keys
1360BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_get_field(botan_mp_t output, botan_pubkey_t key, const char* field_name);
1362BOTAN_FFI_EXPORT(2, 0) int botan_privkey_get_field(botan_mp_t output, botan_privkey_t key, const char* field_name);
1365* Algorithm specific key operations: RSA
1367BOTAN_FFI_EXPORT(2, 0) int botan_privkey_load_rsa(botan_privkey_t* key, botan_mp_t p, botan_mp_t q, botan_mp_t e);
1369BOTAN_FFI_EXPORT(2, 8) int botan_privkey_load_rsa_pkcs1(botan_privkey_t* key, const uint8_t bits[], size_t len);
1372BOTAN_FFI_EXPORT(2, 0) int botan_privkey_rsa_get_p(botan_mp_t p, botan_privkey_t rsa_key);
1374BOTAN_FFI_EXPORT(2, 0) int botan_privkey_rsa_get_q(botan_mp_t q, botan_privkey_t rsa_key);
1376BOTAN_FFI_EXPORT(2, 0) int botan_privkey_rsa_get_d(botan_mp_t d, botan_privkey_t rsa_key);
1378BOTAN_FFI_EXPORT(2, 0) int botan_privkey_rsa_get_n(botan_mp_t n, botan_privkey_t rsa_key);
1380BOTAN_FFI_EXPORT(2, 0) int botan_privkey_rsa_get_e(botan_mp_t e, botan_privkey_t rsa_key);
1382BOTAN_FFI_EXPORT(2, 8)
1383int botan_privkey_rsa_get_privkey(botan_privkey_t rsa_key, uint8_t out[], size_t* out_len, uint32_t flags);
1385BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_load_rsa(botan_pubkey_t* key, botan_mp_t n, botan_mp_t e);
1388BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_rsa_get_e(botan_mp_t e, botan_pubkey_t rsa_key);
1390BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_rsa_get_n(botan_mp_t n, botan_pubkey_t rsa_key);
1393* Algorithm specific key operations: DSA
1395BOTAN_FFI_EXPORT(2, 0)
1396int botan_privkey_load_dsa(botan_privkey_t* key, botan_mp_t p, botan_mp_t q, botan_mp_t g, botan_mp_t x);
1398BOTAN_FFI_EXPORT(2, 0)
1399int botan_pubkey_load_dsa(botan_pubkey_t* key, botan_mp_t p, botan_mp_t q, botan_mp_t g, botan_mp_t y);
1402BOTAN_FFI_EXPORT(2, 0) int botan_privkey_dsa_get_x(botan_mp_t n, botan_privkey_t key);
1405BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_dsa_get_p(botan_mp_t p, botan_pubkey_t key);
1407BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_dsa_get_q(botan_mp_t q, botan_pubkey_t key);
1409BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_dsa_get_g(botan_mp_t d, botan_pubkey_t key);
1411BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_dsa_get_y(botan_mp_t y, botan_pubkey_t key);
1414* Loads Diffie Hellman private key
1416* @param key variable populated with key material
1417* @param p prime order of a Z_p group
1418* @param g group generator
1419* @param x private key
1421* @pre key is NULL on input
1422* @post function allocates memory and assigns to `key'
1424* @return 0 on success, a negative value on failure
1426BOTAN_FFI_EXPORT(2, 0) int botan_privkey_load_dh(botan_privkey_t* key, botan_mp_t p, botan_mp_t g, botan_mp_t x);
1440BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_load_dh(botan_pubkey_t* key, botan_mp_t p, botan_mp_t g, botan_mp_t y);
1443* Algorithm specific key operations: ElGamal
1458BOTAN_FFI_EXPORT(2, 0) int botan_pubkey_load_elgamal(botan_pubkey_t* key, botan_mp_t p, botan_mp_t g, botan_mp_t y);
1473BOTAN_FFI_EXPORT(2, 0) int botan_privkey_load_elgamal(botan_privkey_t* key, botan_mp_t p, botan_mp_t g, botan_mp_t x);
1476* Algorithm specific key operations: Ed25519
1479BOTAN_FFI_EXPORT(2, 2) int botan_privkey_load_ed25519(botan_privkey_t* key, const uint8_t privkey[32]);
1481BOTAN_FFI_EXPORT(2, 2) int botan_pubkey_load_ed25519(botan_pubkey_t* key, const uint8_t pubkey[32]);
1483BOTAN_FFI_EXPORT(2, 2) int botan_privkey_ed25519_get_privkey(botan_privkey_t key, uint8_t output[64]);
1485BOTAN_FFI_EXPORT(2, 2) int botan_pubkey_ed25519_get_pubkey(botan_pubkey_t key, uint8_t pubkey[32]);
1488* Algorithm specific key operations: Ed448
1491BOTAN_FFI_EXPORT(3, 4) int botan_privkey_load_ed448(botan_privkey_t* key, const uint8_t privkey[57]);
1493BOTAN_FFI_EXPORT(3, 4) int botan_pubkey_load_ed448(botan_pubkey_t* key, const uint8_t pubkey[57]);
1495BOTAN_FFI_EXPORT(3, 4) int botan_privkey_ed448_get_privkey(botan_privkey_t key, uint8_t output[57]);
1497BOTAN_FFI_EXPORT(3, 4) int botan_pubkey_ed448_get_pubkey(botan_pubkey_t key, uint8_t pubkey[57]);
1500* Algorithm specific key operations: X25519
1503BOTAN_FFI_EXPORT(2, 8) int botan_privkey_load_x25519(botan_privkey_t* key, const uint8_t privkey[32]);
1505BOTAN_FFI_EXPORT(2, 8) int botan_pubkey_load_x25519(botan_pubkey_t* key, const uint8_t pubkey[32]);
1507BOTAN_FFI_EXPORT(2, 8) int botan_privkey_x25519_get_privkey(botan_privkey_t key, uint8_t output[32]);
1509BOTAN_FFI_EXPORT(2, 8) int botan_pubkey_x25519_get_pubkey(botan_pubkey_t key, uint8_t pubkey[32]);
1512* Algorithm specific key operations: X448
1515BOTAN_FFI_EXPORT(3, 4) int botan_privkey_load_x448(botan_privkey_t* key, const uint8_t privkey[56]);
1517BOTAN_FFI_EXPORT(3, 4) int botan_pubkey_load_x448(botan_pubkey_t* key, const uint8_t pubkey[56]);
1519BOTAN_FFI_EXPORT(3, 4) int botan_privkey_x448_get_privkey(botan_privkey_t key, uint8_t output[56]);
1521BOTAN_FFI_EXPORT(3, 4) int botan_pubkey_x448_get_pubkey(botan_pubkey_t key, uint8_t pubkey[56]);
1524* Algorithm specific key operations: ML-DSA
1527BOTAN_FFI_EXPORT(3, 6)
1528int botan_privkey_load_ml_dsa(botan_privkey_t* key, const uint8_t privkey[], size_t key_len, const char* mldsa_mode);
1530BOTAN_FFI_EXPORT(3, 6)
1531int botan_pubkey_load_ml_dsa(botan_pubkey_t* key, const uint8_t pubkey[], size_t key_len, const char* mldsa_mode);
1534* Algorithm specific key operations: Kyber
1537BOTAN_FFI_EXPORT(3, 1) int botan_privkey_load_kyber(botan_privkey_t* key, const uint8_t privkey[], size_t key_len);
1539BOTAN_FFI_EXPORT(3, 1) int botan_pubkey_load_kyber(botan_pubkey_t* key, const uint8_t pubkey[], size_t key_len);
1542BOTAN_FFI_EXPORT(3, 1)
1543int botan_privkey_view_kyber_raw_key(botan_privkey_t key, botan_view_ctx ctx, botan_view_bin_fn view);
1546BOTAN_FFI_EXPORT(3, 1)
1547int botan_pubkey_view_kyber_raw_key(botan_pubkey_t key, botan_view_ctx ctx, botan_view_bin_fn view);
1553BOTAN_FFI_EXPORT(3, 6)
1554int botan_privkey_load_frodokem(botan_privkey_t* key, const uint8_t privkey[], size_t key_len, const char* frodo_mode);
1556BOTAN_FFI_EXPORT(3, 6)
1557int botan_pubkey_load_frodokem(botan_pubkey_t* key, const uint8_t pubkey[], size_t key_len, const char* frodo_mode);
1560* Algorithm specific key operations: ML-KEM
1563BOTAN_FFI_EXPORT(3, 6)
1564int botan_privkey_load_ml_kem(botan_privkey_t* key, const uint8_t privkey[], size_t key_len, const char* mlkem_mode);
1566BOTAN_FFI_EXPORT(3, 6)
1567int botan_pubkey_load_ml_kem(botan_pubkey_t* key, const uint8_t pubkey[], size_t key_len, const char* mlkem_mode);
1570* Algorithm specific key operations: SLH-DSA
1573BOTAN_FFI_EXPORT(3, 6)
1574int botan_privkey_load_slh_dsa(botan_privkey_t* key, const uint8_t privkey[], size_t key_len, const char* slhdsa_mode);
1576BOTAN_FFI_EXPORT(3, 6)
1577int botan_pubkey_load_slh_dsa(botan_pubkey_t* key, const uint8_t pubkey[], size_t key_len, const char* slhdsa_mode);
1580* Algorithm specific key operations: ECDSA and ECDH
1582BOTAN_FFI_EXPORT(3, 2)
1583int botan_pubkey_ecc_key_used_explicit_encoding(botan_pubkey_t key);
1585BOTAN_FFI_EXPORT(2, 2)
1586int botan_privkey_load_ecdsa(botan_privkey_t* key, botan_mp_t scalar, const char* curve_name);
1588BOTAN_FFI_EXPORT(2, 2)
1589int botan_pubkey_load_ecdsa(botan_pubkey_t* key, botan_mp_t public_x, botan_mp_t public_y, const char* curve_name);
1591BOTAN_FFI_EXPORT(2, 2)
1592int botan_pubkey_load_ecdh(botan_pubkey_t* key, botan_mp_t public_x, botan_mp_t public_y, const char* curve_name);
1594BOTAN_FFI_EXPORT(2, 2)
1595int botan_privkey_load_ecdh(botan_privkey_t* key, botan_mp_t scalar, const char* curve_name);
1597BOTAN_FFI_EXPORT(2, 2)
1598int botan_pubkey_load_sm2(botan_pubkey_t* key, botan_mp_t public_x, botan_mp_t public_y, const char* curve_name);
1600BOTAN_FFI_EXPORT(2, 2)
1601int botan_privkey_load_sm2(botan_privkey_t* key, botan_mp_t scalar, const char* curve_name);
1604BOTAN_FFI_EXPORT(2, 2)
1605int botan_pubkey_load_sm2_enc(botan_pubkey_t* key, botan_mp_t public_x, botan_mp_t public_y, const char* curve_name);
1608BOTAN_FFI_EXPORT(2, 2)
1609int botan_privkey_load_sm2_enc(botan_privkey_t* key, botan_mp_t scalar, const char* curve_name);
1611BOTAN_FFI_EXPORT(2, 3)
1612int botan_pubkey_sm2_compute_za(
1613 uint8_t out[], size_t* out_len, const char* ident, const char* hash_algo, botan_pubkey_t key);
1618BOTAN_FFI_EXPORT(3, 0)
1619int botan_pubkey_view_ec_public_point(botan_pubkey_t key, botan_view_ctx ctx, botan_view_bin_fn view);
1622* Public Key Encryption
1624typedef struct botan_pk_op_encrypt_struct* botan_pk_op_encrypt_t;
1626BOTAN_FFI_EXPORT(2, 0)
1627int botan_pk_op_encrypt_create(botan_pk_op_encrypt_t* op, botan_pubkey_t key, const char* padding, uint32_t flags);
1632BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_encrypt_destroy(botan_pk_op_encrypt_t op);
1634BOTAN_FFI_EXPORT(2, 8)
1635int botan_pk_op_encrypt_output_length(botan_pk_op_encrypt_t op, size_t ptext_len, size_t* ctext_len);
1637BOTAN_FFI_EXPORT(2, 0)
1638int botan_pk_op_encrypt(botan_pk_op_encrypt_t op,
1642 const uint8_t plaintext[],
1643 size_t plaintext_len);
1646* Public Key Decryption
1648typedef struct botan_pk_op_decrypt_struct* botan_pk_op_decrypt_t;
1650BOTAN_FFI_EXPORT(2, 0)
1651int botan_pk_op_decrypt_create(botan_pk_op_decrypt_t* op, botan_privkey_t key, const char* padding, uint32_t flags);
1656BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_decrypt_destroy(botan_pk_op_decrypt_t op);
1658BOTAN_FFI_EXPORT(2, 8)
1659int botan_pk_op_decrypt_output_length(botan_pk_op_decrypt_t op, size_t ctext_len, size_t* ptext_len);
1661BOTAN_FFI_EXPORT(2, 0)
1662int botan_pk_op_decrypt(
1663 botan_pk_op_decrypt_t op, uint8_t out[], size_t* out_len, const uint8_t ciphertext[], size_t ciphertext_len);
1666* Signature Generation
1669#define BOTAN_PUBKEY_DER_FORMAT_SIGNATURE 1
1671typedef struct botan_pk_op_sign_struct* botan_pk_op_sign_t;
1673BOTAN_FFI_EXPORT(2, 0)
1674int botan_pk_op_sign_create(botan_pk_op_sign_t* op, botan_privkey_t key, const char* hash_and_padding, uint32_t flags);
1679BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_sign_destroy(botan_pk_op_sign_t op);
1681BOTAN_FFI_EXPORT(2, 8) int botan_pk_op_sign_output_length(botan_pk_op_sign_t op, size_t* olen);
1683BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_sign_update(botan_pk_op_sign_t op, const uint8_t in[], size_t in_len);
1685BOTAN_FFI_EXPORT(2, 0)
1686int botan_pk_op_sign_finish(botan_pk_op_sign_t op, botan_rng_t rng, uint8_t sig[], size_t* sig_len);
1689* Signature Verification
1691typedef struct botan_pk_op_verify_struct* botan_pk_op_verify_t;
1693BOTAN_FFI_EXPORT(2, 0)
1694int botan_pk_op_verify_create(botan_pk_op_verify_t* op,
1696 const char* hash_and_padding,
1702BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_verify_destroy(botan_pk_op_verify_t op);
1704BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_verify_update(botan_pk_op_verify_t op, const uint8_t in[], size_t in_len);
1705BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_verify_finish(botan_pk_op_verify_t op, const uint8_t sig[], size_t sig_len);
1710typedef struct botan_pk_op_ka_struct* botan_pk_op_ka_t;
1712BOTAN_FFI_EXPORT(2, 0)
1713int botan_pk_op_key_agreement_create(botan_pk_op_ka_t* op, botan_privkey_t key, const char* kdf, uint32_t flags);
1718BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_key_agreement_destroy(botan_pk_op_ka_t op);
1720BOTAN_FFI_EXPORT(2, 0) int botan_pk_op_key_agreement_export_public(botan_privkey_t key, uint8_t out[], size_t* out_len);
1722BOTAN_FFI_EXPORT(3, 0)
1723int botan_pk_op_key_agreement_view_public(botan_privkey_t key, botan_view_ctx ctx, botan_view_bin_fn view);
1725BOTAN_FFI_EXPORT(2, 8) int botan_pk_op_key_agreement_size(botan_pk_op_ka_t op, size_t* out_len);
1727BOTAN_FFI_EXPORT(2, 0)
1728int botan_pk_op_key_agreement(botan_pk_op_ka_t op,
1731 const uint8_t other_key[],
1732 size_t other_key_len,
1733 const uint8_t salt[],
1739typedef struct botan_pk_op_kem_encrypt_struct* botan_pk_op_kem_encrypt_t;
1741BOTAN_FFI_EXPORT(3, 0)
1742int botan_pk_op_kem_encrypt_create(botan_pk_op_kem_encrypt_t* op, botan_pubkey_t key, const char* kdf);
1747BOTAN_FFI_EXPORT(3, 0) int botan_pk_op_kem_encrypt_destroy(botan_pk_op_kem_encrypt_t op);
1749BOTAN_FFI_EXPORT(3, 0)
1750int botan_pk_op_kem_encrypt_shared_key_length(botan_pk_op_kem_encrypt_t op,
1751 size_t desired_shared_key_length,
1752 size_t* output_shared_key_length);
1754BOTAN_FFI_EXPORT(3, 0)
1755int botan_pk_op_kem_encrypt_encapsulated_key_length(botan_pk_op_kem_encrypt_t op,
1756 size_t* output_encapsulated_key_length);
1758BOTAN_FFI_EXPORT(3, 0)
1759int botan_pk_op_kem_encrypt_create_shared_key(botan_pk_op_kem_encrypt_t op,
1761 const uint8_t salt[],
1763 size_t desired_shared_key_len,
1764 uint8_t shared_key[],
1765 size_t* shared_key_len,
1766 uint8_t encapsulated_key[],
1767 size_t* encapsulated_key_len);
1769typedef struct botan_pk_op_kem_decrypt_struct* botan_pk_op_kem_decrypt_t;
1771BOTAN_FFI_EXPORT(3, 0)
1772int botan_pk_op_kem_decrypt_create(botan_pk_op_kem_decrypt_t* op, botan_privkey_t key, const char* kdf);
1777BOTAN_FFI_EXPORT(3, 0) int botan_pk_op_kem_decrypt_destroy(botan_pk_op_kem_decrypt_t op);
1779BOTAN_FFI_EXPORT(3, 0)
1780int botan_pk_op_kem_decrypt_shared_key_length(botan_pk_op_kem_decrypt_t op,
1781 size_t desired_shared_key_length,
1782 size_t* output_shared_key_length);
1784BOTAN_FFI_EXPORT(3, 0)
1785int botan_pk_op_kem_decrypt_shared_key(botan_pk_op_kem_decrypt_t op,
1786 const uint8_t salt[],
1788 const uint8_t encapsulated_key[],
1789 size_t encapsulated_key_len,
1790 size_t desired_shared_key_len,
1791 uint8_t shared_key[],
1792 size_t* shared_key_len);
1798BOTAN_FFI_EXPORT(2, 0) int botan_pkcs_hash_id(const char* hash_name, uint8_t pkcs_id[], size_t* pkcs_id_len);
1801* Always returns BOTAN_FFI_ERROR_NOT_IMPLEMENTED
1803BOTAN_FFI_DEPRECATED("No longer implemented
")
1804BOTAN_FFI_EXPORT(2, 0)
1805int botan_mceies_encrypt(botan_pubkey_t mce_key,
1816* Always returns BOTAN_FFI_ERROR_NOT_IMPLEMENTED
1818BOTAN_FFI_DEPRECATED("No longer implemented
")
1819BOTAN_FFI_EXPORT(2, 0)
1820int botan_mceies_decrypt(botan_privkey_t mce_key,
1831**************************/
1833typedef struct botan_x509_cert_struct* botan_x509_cert_t;
1835BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_load(botan_x509_cert_t* cert_obj, const uint8_t cert[], size_t cert_len);
1836BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_load_file(botan_x509_cert_t* cert_obj, const char* filename);
1841BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_destroy(botan_x509_cert_t cert);
1843BOTAN_FFI_EXPORT(2, 8) int botan_x509_cert_dup(botan_x509_cert_t* new_cert, botan_x509_cert_t cert);
1845/* Prefer botan_x509_cert_not_before and botan_x509_cert_not_after */
1846BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_get_time_starts(botan_x509_cert_t cert, char out[], size_t* out_len);
1847BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_get_time_expires(botan_x509_cert_t cert, char out[], size_t* out_len);
1849BOTAN_FFI_EXPORT(2, 8) int botan_x509_cert_not_before(botan_x509_cert_t cert, uint64_t* time_since_epoch);
1850BOTAN_FFI_EXPORT(2, 8) int botan_x509_cert_not_after(botan_x509_cert_t cert, uint64_t* time_since_epoch);
1852BOTAN_FFI_EXPORT(2, 0)
1853int botan_x509_cert_get_fingerprint(botan_x509_cert_t cert, const char* hash, uint8_t out[], size_t* out_len);
1855BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_get_serial_number(botan_x509_cert_t cert, uint8_t out[], size_t* out_len);
1856BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_get_authority_key_id(botan_x509_cert_t cert, uint8_t out[], size_t* out_len);
1857BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_get_subject_key_id(botan_x509_cert_t cert, uint8_t out[], size_t* out_len);
1859BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_get_public_key_bits(botan_x509_cert_t cert, uint8_t out[], size_t* out_len);
1861BOTAN_FFI_EXPORT(3, 0)
1862int botan_x509_cert_view_public_key_bits(botan_x509_cert_t cert, botan_view_ctx ctx, botan_view_bin_fn view);
1864BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_get_public_key(botan_x509_cert_t cert, botan_pubkey_t* key);
1866BOTAN_FFI_EXPORT(2, 0)
1867int botan_x509_cert_get_issuer_dn(
1868 botan_x509_cert_t cert, const char* key, size_t index, uint8_t out[], size_t* out_len);
1870BOTAN_FFI_EXPORT(2, 0)
1871int botan_x509_cert_get_subject_dn(
1872 botan_x509_cert_t cert, const char* key, size_t index, uint8_t out[], size_t* out_len);
1874BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_to_string(botan_x509_cert_t cert, char out[], size_t* out_len);
1876BOTAN_FFI_EXPORT(3, 0)
1877int botan_x509_cert_view_as_string(botan_x509_cert_t cert, botan_view_ctx ctx, botan_view_str_fn view);
1879/* Must match values of Key_Constraints in key_constraints.h */
1880enum botan_x509_cert_key_constraints {
1882 DIGITAL_SIGNATURE = 32768,
1883 NON_REPUDIATION = 16384,
1884 KEY_ENCIPHERMENT = 8192,
1885 DATA_ENCIPHERMENT = 4096,
1886 KEY_AGREEMENT = 2048,
1887 KEY_CERT_SIGN = 1024,
1889 ENCIPHER_ONLY = 256,
1893BOTAN_FFI_EXPORT(2, 0) int botan_x509_cert_allowed_usage(botan_x509_cert_t cert, unsigned int key_usage);
1899BOTAN_FFI_EXPORT(2, 5) int botan_x509_cert_hostname_match(botan_x509_cert_t cert, const char* hostname);
1909BOTAN_FFI_EXPORT(2, 8)
1910int botan_x509_cert_verify(int* validation_result,
1911 botan_x509_cert_t cert,
1912 const botan_x509_cert_t* intermediates,
1913 size_t intermediates_len,
1914 const botan_x509_cert_t* trusted,
1916 const char* trusted_path,
1917 size_t required_strength,
1918 const char* hostname,
1919 uint64_t reference_time);
1925BOTAN_FFI_EXPORT(2, 8) const char* botan_x509_cert_validation_status(int code);
1929**************************/
1931typedef struct botan_x509_crl_struct* botan_x509_crl_t;
1933BOTAN_FFI_EXPORT(2, 13) int botan_x509_crl_load_file(botan_x509_crl_t* crl_obj, const char* crl_path);
1934BOTAN_FFI_EXPORT(2, 13)
1935int botan_x509_crl_load(botan_x509_crl_t* crl_obj, const uint8_t crl_bits[], size_t crl_bits_len);
1937BOTAN_FFI_EXPORT(2, 13) int botan_x509_crl_destroy(botan_x509_crl_t crl);
1943BOTAN_FFI_EXPORT(2, 13) int botan_x509_is_revoked(botan_x509_crl_t crl, botan_x509_cert_t cert);
1949BOTAN_FFI_EXPORT(2, 13)
1950int botan_x509_cert_verify_with_crl(int* validation_result,
1951 botan_x509_cert_t cert,
1952 const botan_x509_cert_t* intermediates,
1953 size_t intermediates_len,
1954 const botan_x509_cert_t* trusted,
1956 const botan_x509_crl_t* crls,
1958 const char* trusted_path,
1959 size_t required_strength,
1960 const char* hostname,
1961 uint64_t reference_time);
1967BOTAN_FFI_EXPORT(2, 2)
1968int botan_key_wrap3394(const uint8_t key[],
1970 const uint8_t kek[],
1972 uint8_t wrapped_key[],
1973 size_t* wrapped_key_len);
1976BOTAN_FFI_EXPORT(2, 2)
1977int botan_key_unwrap3394(const uint8_t wrapped_key[],
1978 size_t wrapped_key_len,
1979 const uint8_t kek[],
1984BOTAN_FFI_EXPORT(3, 0)
1985int botan_nist_kw_enc(const char* cipher_algo,
1987 const uint8_t key[],
1989 const uint8_t kek[],
1991 uint8_t wrapped_key[],
1992 size_t* wrapped_key_len);
1994BOTAN_FFI_EXPORT(3, 0)
1995int botan_nist_kw_dec(const char* cipher_algo,
1997 const uint8_t wrapped_key[],
1998 size_t wrapped_key_len,
1999 const uint8_t kek[],
2008typedef struct botan_hotp_struct* botan_hotp_t;
2013BOTAN_FFI_EXPORT(2, 8)
2014int botan_hotp_init(botan_hotp_t* hotp, const uint8_t key[], size_t key_len, const char* hash_algo, size_t digits);
2020BOTAN_FFI_EXPORT(2, 8)
2021int botan_hotp_destroy(botan_hotp_t hotp);
2026BOTAN_FFI_EXPORT(2, 8)
2027int botan_hotp_generate(botan_hotp_t hotp, uint32_t* hotp_code, uint64_t hotp_counter);
2032BOTAN_FFI_EXPORT(2, 8)
2033int botan_hotp_check(
2034 botan_hotp_t hotp, uint64_t* next_hotp_counter, uint32_t hotp_code, uint64_t hotp_counter, size_t resync_range);
2040typedef struct botan_totp_struct* botan_totp_t;
2045BOTAN_FFI_EXPORT(2, 8)
2047 botan_totp_t* totp, const uint8_t key[], size_t key_len, const char* hash_algo, size_t digits, size_t time_step);
2053BOTAN_FFI_EXPORT(2, 8)
2054int botan_totp_destroy(botan_totp_t totp);
2062BOTAN_FFI_EXPORT(2, 8)
2063int botan_totp_generate(botan_totp_t totp, uint32_t* totp_code, uint64_t timestamp);
2073BOTAN_FFI_EXPORT(2, 8)
2074int botan_totp_check(botan_totp_t totp, uint32_t totp_code, uint64_t timestamp, size_t acceptable_clock_drift);
2080typedef struct botan_fpe_struct* botan_fpe_t;
2082#define BOTAN_FPE_FLAG_FE1_COMPAT_MODE 1
2084BOTAN_FFI_EXPORT(2, 8)
2085int botan_fpe_fe1_init(
2086 botan_fpe_t* fpe, botan_mp_t n, const uint8_t key[], size_t key_len, size_t rounds, uint32_t flags);
2091BOTAN_FFI_EXPORT(2, 8)
2092int botan_fpe_destroy(botan_fpe_t fpe);
2094BOTAN_FFI_EXPORT(2, 8)
2095int botan_fpe_encrypt(botan_fpe_t fpe, botan_mp_t x, const uint8_t tweak[], size_t tweak_len);
2097BOTAN_FFI_EXPORT(2, 8)
2098int botan_fpe_decrypt(botan_fpe_t fpe, botan_mp_t x, const uint8_t tweak[], size_t tweak_len);
2103typedef struct botan_srp6_server_session_struct* botan_srp6_server_session_t;
2109BOTAN_FFI_EXPORT(3, 0)
2110int botan_srp6_server_session_init(botan_srp6_server_session_t* srp6);
2117BOTAN_FFI_EXPORT(3, 0)
2118int botan_srp6_server_session_destroy(botan_srp6_server_session_t srp6);
2132BOTAN_FFI_EXPORT(3, 0)
2133int botan_srp6_server_session_step1(botan_srp6_server_session_t srp6,
2134 const uint8_t verifier[],
2135 size_t verifier_len,
2136 const char* group_id,
2137 const char* hash_id,
2138 botan_rng_t rng_obj,
2151BOTAN_FFI_EXPORT(3, 0)
2152int botan_srp6_server_session_step2(
2153 botan_srp6_server_session_t srp6, const uint8_t A[], size_t A_len, uint8_t key[], size_t* key_len);
2167BOTAN_FFI_EXPORT(3, 0)
2168int botan_srp6_generate_verifier(const char* identifier,
2169 const char* password,
2170 const uint8_t salt[],
2172 const char* group_id,
2173 const char* hash_id,
2175 size_t* verifier_len);
2194BOTAN_FFI_EXPORT(3, 0)
2195int botan_srp6_client_agree(const char* username,
2196 const char* password,
2197 const char* group_id,
2198 const char* hash_id,
2199 const uint8_t salt[],
2203 botan_rng_t rng_obj,
2212BOTAN_FFI_EXPORT(3, 0)
2213int botan_srp6_group_size(const char* group_id, size_t* group_p_bytes);
2233BOTAN_FFI_EXPORT(3, 0)
2234int botan_zfec_encode(size_t K, size_t N, const uint8_t* input, size_t size, uint8_t** outputs);
2254BOTAN_FFI_EXPORT(3, 0)
2255int botan_zfec_decode(
2256 size_t K, size_t N, const size_t* indexes, uint8_t* const* inputs, size_t shareSize, uint8_t** outputs);
2261typedef struct botan_tpm2_ctx_struct* botan_tpm2_ctx_t;
2266typedef struct botan_tpm2_session_struct* botan_tpm2_session_t;
2272BOTAN_FFI_EXPORT(3, 6)
2273int botan_tpm2_supports_crypto_backend();
2281BOTAN_FFI_EXPORT(3, 6) int botan_tpm2_ctx_init(botan_tpm2_ctx_t* ctx_out, const char* tcti_nameconf);
2290BOTAN_FFI_EXPORT(3, 6)
2291int botan_tpm2_ctx_init_ex(botan_tpm2_ctx_t* ctx_out, const char* tcti_name, const char* tcti_conf);
2302BOTAN_FFI_EXPORT(3, 6)
2303int botan_tpm2_ctx_enable_crypto_backend(botan_tpm2_ctx_t ctx, botan_rng_t rng);
2310BOTAN_FFI_EXPORT(3, 6) int botan_tpm2_ctx_destroy(botan_tpm2_ctx_t ctx);
2320BOTAN_FFI_EXPORT(3, 6)
2321int botan_tpm2_rng_init(botan_rng_t* rng_out,
2322 botan_tpm2_ctx_t ctx,
2323 botan_tpm2_session_t s1,
2324 botan_tpm2_session_t s2,
2325 botan_tpm2_session_t s3);
2332BOTAN_FFI_EXPORT(3, 6)
2333int botan_tpm2_unauthenticated_session_init(botan_tpm2_session_t* session_out, botan_tpm2_ctx_t ctx);
2339BOTAN_FFI_EXPORT(3, 6)
2340int botan_tpm2_session_destroy(botan_tpm2_session_t session);
int botan_mp_lshift(botan_mp_t out, botan_mp_t in, size_t shift)
int botan_block_cipher_get_keyspec(botan_block_cipher_t cipher, size_t *out_minimum_keylength, size_t *out_maximum_keylength, size_t *out_keylength_modulo)
int botan_block_cipher_init(botan_block_cipher_t *bc, const char *cipher_name)
int botan_mp_is_prime(botan_mp_t n, botan_rng_t rng, size_t test_prob)
int botan_rng_reseed_from_rng(botan_rng_t rng, botan_rng_t source_rng, size_t bits)
int botan_mp_div(botan_mp_t quotient, botan_mp_t remainder, botan_mp_t x, botan_mp_t y)
uint32_t botan_version_minor(void)
int botan_mp_set_from_int(botan_mp_t mp, int initial_value)
int botan_mp_to_bin(botan_mp_t mp, uint8_t vec[])
int botan_bcrypt_generate(uint8_t *out, size_t *out_len, const char *password, botan_rng_t rng, size_t work_factor, uint32_t flags)
int botan_privkey_check_key(botan_privkey_t key, botan_rng_t rng, uint32_t flags)
int botan_base64_encode(const uint8_t *x, size_t len, char *out, size_t *out_len)
int botan_privkey_create_elgamal(botan_privkey_t *key, botan_rng_t rng, size_t pbits, size_t qbits)
int botan_mp_rand_range(botan_mp_t rand_out, botan_rng_t rng, botan_mp_t lower_bound, botan_mp_t upper_bound)
int botan_hash_update(botan_hash_t hash, const uint8_t *in, size_t in_len)
int botan_mp_rshift(botan_mp_t out, botan_mp_t in, size_t shift)
int botan_nist_kw_enc(const char *cipher_algo, int padded, const uint8_t key[], size_t key_len, const uint8_t kek[], size_t kek_len, uint8_t wrapped_key[], size_t *wrapped_key_len)
int botan_privkey_create_rsa(botan_privkey_t *key, botan_rng_t rng, size_t n_bits)
uint32_t botan_version_datestamp(void)
uint32_t botan_version_patch(void)
int botan_privkey_create_ecdsa(botan_privkey_t *key, botan_rng_t rng, const char *params)
int botan_mp_set_from_radix_str(botan_mp_t dest, const char *str, size_t radix)
int botan_rng_add_entropy(botan_rng_t rng, const uint8_t *entropy, size_t entropy_len)
int botan_cipher_start(botan_cipher_t cipher, const uint8_t *nonce, size_t nonce_len)
int botan_mp_add(botan_mp_t result, botan_mp_t x, botan_mp_t y)
int botan_mp_powmod(botan_mp_t out, botan_mp_t base, botan_mp_t exponent, botan_mp_t modulus)
uint32_t botan_version_major(void)
int botan_cipher_valid_nonce_length(botan_cipher_t cipher, size_t nl)
int botan_mac_init(botan_mac_t *mac, const char *mac_name, uint32_t flags)
int botan_mp_to_uint32(botan_mp_t mp, uint32_t *val)
int botan_privkey_create_dh(botan_privkey_t *key, botan_rng_t rng, const char *param)
int botan_hash_name(botan_hash_t hash, char *name, size_t *name_len)
int botan_cipher_get_tag_length(botan_cipher_t cipher, size_t *tag_size)
int botan_privkey_get_field(botan_mp_t output, botan_privkey_t key, const char *field_name)
int botan_rng_init_custom(botan_rng_t *rng_out, const char *rng_name, void *context, int(*get_cb)(void *context, uint8_t *out, size_t out_len), int(*add_entropy_cb)(void *context, const uint8_t input[], size_t length), void(*destroy_cb)(void *context))
#define BOTAN_FFI_EXPORT(maj, min)
int botan_pwdhash_timed(const char *algo, uint32_t msec, size_t *param1, size_t *param2, size_t *param3, uint8_t out[], size_t out_len, const char *passphrase, size_t passphrase_len, const uint8_t salt[], size_t salt_len)
int botan_rng_reseed(botan_rng_t rng, size_t bits)
int botan_mp_init(botan_mp_t *mp)
int botan_same_mem(const uint8_t *x, const uint8_t *y, size_t len)
int botan_privkey_load(botan_privkey_t *key, botan_rng_t rng, const uint8_t bits[], size_t len, const char *password)
struct botan_mac_struct * botan_mac_t
int botan_base64_decode(const char *base64_str, size_t in_len, uint8_t *out, size_t *out_len)
int botan_mac_destroy(botan_mac_t mac)
int botan_mp_is_odd(botan_mp_t mp)
int botan_cipher_requires_entire_message(botan_cipher_t cipher)
struct botan_privkey_struct * botan_privkey_t
int botan_cipher_output_length(botan_cipher_t cipher, size_t in_len, size_t *out_len)
int botan_cipher_reset(botan_cipher_t cipher)
int botan_cipher_init(botan_cipher_t *cipher, const char *name, uint32_t flags)
int botan_block_cipher_clear(botan_block_cipher_t bc)
int botan_privkey_export(botan_privkey_t key, uint8_t out[], size_t *out_len, uint32_t flags)
int botan_hash_destroy(botan_hash_t hash)
int botan_mac_set_nonce(botan_mac_t mac, const uint8_t *nonce, size_t nonce_len)
int botan_block_cipher_block_size(botan_block_cipher_t bc)
int botan_cipher_destroy(botan_cipher_t cipher)
#define BOTAN_FFI_DEPRECATED(msg)
int botan_mp_num_bytes(botan_mp_t n, size_t *bytes)
int botan_cipher_name(botan_cipher_t cipher, char *name, size_t *name_len)
int botan_cipher_set_associated_data(botan_cipher_t cipher, const uint8_t *ad, size_t ad_len)
int botan_cipher_get_keyspec(botan_cipher_t, size_t *min_keylen, size_t *max_keylen, size_t *mod_keylen)
int botan_privkey_destroy(botan_privkey_t key)
int botan_mp_from_bin(botan_mp_t mp, const uint8_t vec[], size_t vec_len)
int botan_block_cipher_decrypt_blocks(botan_block_cipher_t bc, const uint8_t in[], uint8_t out[], size_t blocks)
int botan_hash_clear(botan_hash_t hash)
int botan_mp_add_u32(botan_mp_t result, botan_mp_t x, uint32_t y)
int botan_mp_to_hex(botan_mp_t mp, char *out)
int botan_privkey_view_der(botan_privkey_t key, botan_view_ctx ctx, botan_view_bin_fn view)
int botan_mp_swap(botan_mp_t x, botan_mp_t y)
int botan_mp_destroy(botan_mp_t mp)
uint32_t botan_ffi_api_version(void)
int botan_mp_mod_mul(botan_mp_t result, botan_mp_t x, botan_mp_t y, botan_mp_t mod)
int botan_privkey_view_raw(botan_privkey_t key, botan_view_ctx ctx, botan_view_bin_fn view)
int botan_hash_output_length(botan_hash_t hash, size_t *output_length)
int botan_mp_rand_bits(botan_mp_t rand_out, botan_rng_t rng, size_t bits)
int botan_cipher_set_key(botan_cipher_t cipher, const uint8_t *key, size_t key_len)
int botan_mp_equal(botan_mp_t x, botan_mp_t y)
int botan_cipher_query_keylen(botan_cipher_t, size_t *out_minimum_keylength, size_t *out_maximum_keylength)
int botan_mp_set_from_str(botan_mp_t dest, const char *str)
int botan_mp_flip_sign(botan_mp_t mp)
int botan_scrypt(uint8_t out[], size_t out_len, const char *passphrase, const uint8_t salt[], size_t salt_len, size_t N, size_t r, size_t p)
int botan_cipher_get_ideal_update_granularity(botan_cipher_t cipher, size_t *ug)
int botan_mp_clear_bit(botan_mp_t n, size_t bit)
int botan_mp_is_zero(botan_mp_t mp)
int botan_mp_mod_inverse(botan_mp_t out, botan_mp_t in, botan_mp_t modulus)
int botan_mp_cmp(int *result, botan_mp_t x, botan_mp_t y)
int botan_pbkdf(const char *pbkdf_algo, uint8_t out[], size_t out_len, const char *passphrase, const uint8_t salt[], size_t salt_len, size_t iterations)
int botan_mp_gcd(botan_mp_t out, botan_mp_t x, botan_mp_t y)
struct botan_block_cipher_struct * botan_block_cipher_t
int botan_system_rng_get(uint8_t *out, size_t out_len)
const char * botan_version_string(void)
int botan_hex_encode(const uint8_t *x, size_t len, char *out, uint32_t flags)
int botan_mp_clear(botan_mp_t mp)
int botan_cipher_is_authenticated(botan_cipher_t cipher)
int botan_mp_get_bit(botan_mp_t n, size_t bit)
int botan_privkey_load_sm2(botan_privkey_t *key, botan_mp_t scalar, const char *curve_name)
int botan_mac_final(botan_mac_t mac, uint8_t out[])
int botan_block_cipher_name(botan_block_cipher_t cipher, char *name, size_t *name_len)
int botan_rng_get(botan_rng_t rng, uint8_t *out, size_t out_len)
int(* botan_view_bin_fn)(botan_view_ctx view_ctx, const uint8_t *data, size_t len)
int botan_mp_sub_u32(botan_mp_t result, botan_mp_t x, uint32_t y)
int botan_scrub_mem(void *mem, size_t bytes)
int botan_mp_num_bits(botan_mp_t n, size_t *bits)
int botan_privkey_create(botan_privkey_t *key, const char *algo_name, const char *algo_params, botan_rng_t rng)
int botan_mac_update(botan_mac_t mac, const uint8_t *buf, size_t len)
int botan_privkey_create_mceliece(botan_privkey_t *key, botan_rng_t rng, size_t n, size_t t)
int botan_mp_mul(botan_mp_t result, botan_mp_t x, botan_mp_t y)
int botan_privkey_algo_name(botan_privkey_t key, char out[], size_t *out_len)
int botan_hash_block_size(botan_hash_t hash, size_t *block_size)
int botan_pubkey_view_raw(botan_pubkey_t key, botan_view_ctx ctx, botan_view_bin_fn view)
int botan_hash_copy_state(botan_hash_t *dest, botan_hash_t source)
int botan_pubkey_get_field(botan_mp_t output, botan_pubkey_t key, const char *field_name)
int botan_privkey_create_dsa(botan_privkey_t *key, botan_rng_t rng, size_t pbits, size_t qbits)
int botan_pubkey_load_sm2(botan_pubkey_t *key, botan_mp_t public_x, botan_mp_t public_y, const char *curve_name)
struct botan_mp_struct * botan_mp_t
struct botan_rng_struct * botan_rng_t
int botan_block_cipher_destroy(botan_block_cipher_t bc)
@ BOTAN_FFI_ERROR_TPM_ERROR
@ BOTAN_FFI_ERROR_NOT_IMPLEMENTED
@ BOTAN_FFI_ERROR_INVALID_KEY_LENGTH
@ BOTAN_FFI_ERROR_KEY_NOT_SET
@ BOTAN_FFI_ERROR_TLS_ERROR
@ BOTAN_FFI_ERROR_EXCEPTION_THROWN
@ BOTAN_FFI_ERROR_OUT_OF_MEMORY
@ BOTAN_FFI_ERROR_INTERNAL_ERROR
@ BOTAN_FFI_INVALID_VERIFIER
@ BOTAN_FFI_ERROR_INVALID_OBJECT
@ BOTAN_FFI_ERROR_UNKNOWN_ERROR
@ BOTAN_FFI_ERROR_HTTP_ERROR
@ BOTAN_FFI_ERROR_BAD_FLAG
@ BOTAN_FFI_ERROR_INVALID_INPUT
@ BOTAN_FFI_ERROR_STRING_CONVERSION_ERROR
@ BOTAN_FFI_ERROR_NULL_POINTER
@ BOTAN_FFI_ERROR_SYSTEM_ERROR
@ BOTAN_FFI_ERROR_ROUGHTIME_ERROR
@ BOTAN_FFI_ERROR_INVALID_OBJECT_STATE
@ BOTAN_FFI_ERROR_INSUFFICIENT_BUFFER_SPACE
@ BOTAN_FFI_ERROR_BAD_MAC
@ BOTAN_FFI_ERROR_BAD_PARAMETER
int botan_pwdhash(const char *algo, size_t param1, size_t param2, size_t param3, uint8_t out[], size_t out_len, const char *passphrase, size_t passphrase_len, const uint8_t salt[], size_t salt_len)
int botan_mac_name(botan_mac_t mac, char *name, size_t *name_len)
int botan_cipher_clear(botan_cipher_t hash)
int botan_mp_is_even(botan_mp_t mp)
int botan_rng_destroy(botan_rng_t rng)
int botan_ffi_supports_api(uint32_t api_version)
const char * botan_error_description(int err)
int botan_hash_final(botan_hash_t hash, uint8_t out[])
const char * botan_error_last_exception_message(void)
int botan_hash_init(botan_hash_t *hash, const char *hash_name, uint32_t flags)
int botan_mac_get_keyspec(botan_mac_t mac, size_t *out_minimum_keylength, size_t *out_maximum_keylength, size_t *out_keylength_modulo)
struct botan_cipher_struct * botan_cipher_t
int botan_cipher_update(botan_cipher_t cipher, uint32_t flags, uint8_t output[], size_t output_size, size_t *output_written, const uint8_t input_bytes[], size_t input_size, size_t *input_consumed)
Encrypt/Decrypt some data and/or finalize the encryption/decryption.
int botan_mac_output_length(botan_mac_t mac, size_t *output_length)
int(* botan_view_str_fn)(botan_view_ctx view_ctx, const char *str, size_t len)
int botan_constant_time_compare(const uint8_t *x, const uint8_t *y, size_t len)
int botan_mp_is_negative(botan_mp_t mp)
int botan_hex_decode(const char *hex_str, size_t in_len, uint8_t *out, size_t *out_len)
int botan_mac_set_key(botan_mac_t mac, const uint8_t *key, size_t key_len)
int botan_kdf(const char *kdf_algo, uint8_t out[], size_t out_len, const uint8_t secret[], size_t secret_len, const uint8_t salt[], size_t salt_len, const uint8_t label[], size_t label_len)
int botan_mp_sub(botan_mp_t result, botan_mp_t x, botan_mp_t y)
int botan_privkey_create_ecdh(botan_privkey_t *key, botan_rng_t rng, const char *params)
int botan_rng_init(botan_rng_t *rng, const char *rng_type)
int botan_block_cipher_encrypt_blocks(botan_block_cipher_t bc, const uint8_t in[], uint8_t out[], size_t blocks)
int botan_cipher_get_default_nonce_length(botan_cipher_t cipher, size_t *nl)
int botan_mp_is_positive(botan_mp_t mp)
int botan_privkey_view_pem(botan_privkey_t key, botan_view_ctx ctx, botan_view_str_fn view)
int botan_nist_kw_dec(const char *cipher_algo, int padded, const uint8_t wrapped_key[], size_t wrapped_key_len, const uint8_t kek[], size_t kek_len, uint8_t key[], size_t *key_len)
int botan_cipher_get_update_granularity(botan_cipher_t cipher, size_t *ug)
int botan_pbkdf_timed(const char *pbkdf_algo, uint8_t out[], size_t out_len, const char *passphrase, const uint8_t salt[], size_t salt_len, size_t milliseconds_to_run, size_t *out_iterations_used)
int botan_mac_clear(botan_mac_t mac)
int botan_mp_to_str(botan_mp_t mp, uint8_t base, char *out, size_t *out_len)
int botan_block_cipher_set_key(botan_block_cipher_t bc, const uint8_t key[], size_t len)
int botan_mp_set_bit(botan_mp_t n, size_t bit)
int botan_bcrypt_is_valid(const char *pass, const char *hash)
int botan_mp_set_from_mp(botan_mp_t dest, botan_mp_t source)
struct botan_hash_struct * botan_hash_t