Skip to content

Commit

Permalink
rename some imported functions
Browse files Browse the repository at this point in the history
  • Loading branch information
smx-smx committed Apr 6, 2024
1 parent 2280a49 commit b6a8a91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions xzre.h
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ typedef struct __attribute__((packed)) {
const RSA *r, const BIGNUM **n,
const BIGNUM **e, const BIGNUM **d);
void *RSA_public_decrypt_hook_ptr;
void *EVP_PKEY_set1_RSA_hook_ptr_null;
void *RSA_get0_key_hook_ptr_null;
void *EVP_PKEY_set1_RSA_hook_ptr;
void *RSA_get0_key_hook_ptr;
void (*DSA_get0_pqg)(
const DSA *d, const BIGNUM **p,
const BIGNUM **q, const BIGNUM **g);
Expand Down Expand Up @@ -432,8 +432,8 @@ assert_offset(imported_funcs_t, RSA_public_decrypt, 0);
assert_offset(imported_funcs_t, EVP_PKEY_set1_RSA, 8);
assert_offset(imported_funcs_t, RSA_get0_key_null, 0x10);
assert_offset(imported_funcs_t, RSA_public_decrypt_hook_ptr, 0x18);
assert_offset(imported_funcs_t, EVP_PKEY_set1_RSA_hook_ptr_null, 0x20);
assert_offset(imported_funcs_t, RSA_get0_key_hook_ptr_null, 0x28);
assert_offset(imported_funcs_t, EVP_PKEY_set1_RSA_hook_ptr, 0x20);
assert_offset(imported_funcs_t, RSA_get0_key_hook_ptr, 0x28);
assert_offset(imported_funcs_t, DSA_get0_pqg, 0x30);
assert_offset(imported_funcs_t, DSA_get0_pub_key, 0x38);
assert_offset(imported_funcs_t, EC_POINT_point2oct, 0x40);
Expand Down

0 comments on commit b6a8a91

Please sign in to comment.