diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-05-08 17:20:06 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-05-08 17:20:06 +0200 |
| commit | 1fbeb6bd349bf5cbf08e176008d7dec9da8e6c18 (patch) | |
| tree | 27348cfa34190de48ab87a267164757ca9d11b88 /src/wrapped | |
| parent | 54cce67156c7fcc58a00c23c33c4b16c87b5a80b (diff) | |
| download | box64-1fbeb6bd349bf5cbf08e176008d7dec9da8e6c18.tar.gz box64-1fbeb6bd349bf5cbf08e176008d7dec9da8e6c18.zip | |
Added a few wrapped function to gcrypt and gnutls
Diffstat (limited to 'src/wrapped')
| -rw-r--r-- | src/wrapped/wrappedgcrypt_private.h | 2 | ||||
| -rwxr-xr-x | src/wrapped/wrappedgnutls_private.h | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/wrapped/wrappedgcrypt_private.h b/src/wrapped/wrappedgcrypt_private.h index 07830c3d..39b2e55e 100644 --- a/src/wrapped/wrappedgcrypt_private.h +++ b/src/wrapped/wrappedgcrypt_private.h @@ -201,7 +201,7 @@ GO(gcry_sexp_find_token, pFppL) //GO(gcry_sexp_new, //GO(gcry_sexp_nth, //GO(gcry_sexp_nth_buffer, -//GO(gcry_sexp_nth_data, +GO(gcry_sexp_nth_data, pFpip) GO(gcry_sexp_nth_mpi, pFpii) //GO(gcry_sexp_nth_string, //GO(gcry_sexp_prepend, diff --git a/src/wrapped/wrappedgnutls_private.h b/src/wrapped/wrappedgnutls_private.h index 3697259b..13363b03 100755 --- a/src/wrapped/wrappedgnutls_private.h +++ b/src/wrapped/wrappedgnutls_private.h @@ -189,6 +189,8 @@ GO(gnutls_dtls_set_timeouts, vFpuu) //GO(gnutls_ecc_curve_get_pk, //GO(gnutls_ecc_curve_get_size, //GO(gnutls_ecc_curve_list, +GO(_gnutls_ecdh_compute_key, iFppp) +GO(gnutls_ecdh_compute_key, iFppp) //GO(gnutls_encode_ber_digest_info, //GO(_gnutls_encode_ber_rs_raw, //GO(gnutls_error_is_fatal, @@ -560,6 +562,7 @@ GO(gnutls_privkey_import_rsa_raw, iFppppppppp) GO(gnutls_privkey_init, iFp) //GO(gnutls_privkey_set_flags, //GO(gnutls_privkey_set_pin_function, +GO(gnutls_privkey_set_spki, iFppu) //GO(gnutls_privkey_sign_data, GO(gnutls_privkey_sign_hash, iFppupp) //GO(gnutls_privkey_status, @@ -616,6 +619,7 @@ GO(gnutls_pubkey_init, iFp) //GO(gnutls_pubkey_print, //GO(gnutls_pubkey_set_key_usage, //GO(gnutls_pubkey_set_pin_function, +GO(gnutls_pubkey_set_spki, iFppu) //GO(gnutls_pubkey_verify_data2, GO(gnutls_pubkey_verify_hash2, iFppupp) //GO(gnutls_pubkey_verify_params, @@ -1092,6 +1096,9 @@ GO(gnutls_x509_privkey_get_pk_algorithm2, iFpp) //GO(gnutls_x509_rdn_get2, //GO(gnutls_x509_rdn_get_by_oid, //GO(gnutls_x509_rdn_get_oid, +GO(gnutls_x509_spki_deinit, vFp) +GO(gnutls_x509_spki_init, vFp) +GO(gnutls_x509_spki_set_rsa_pss_params, vFppu) //GO(gnutls_x509_tlsfeatures_add, //GO(gnutls_x509_tlsfeatures_check_crt, //GO(gnutls_x509_tlsfeatures_deinit, |