Skip to content

Commit

Permalink
Merge pull request #48 from serenity-kit/fix-missing-exports
Browse files Browse the repository at this point in the history
fix: add missing functions and constants for the sodium default export
  • Loading branch information
nikgraf authored Oct 21, 2023
2 parents 4773086 + 9b7c1a3 commit db1adc0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/lib.native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -630,8 +630,8 @@ export function crypto_aead_xchacha20poly1305_ietf_decrypt(
export const ready: Promise<void> = new Promise((resolve) => resolve());

export default {
// crypto_auth,
// crypto_auth_verify,
crypto_auth,
crypto_auth_verify,
crypto_auth_BYTES,
crypto_auth_KEYBYTES,
crypto_auth_keygen,
Expand All @@ -646,6 +646,13 @@ export default {
crypto_box_open_easy,
crypto_box_PUBLICKEYBYTES,
crypto_box_SECRETKEYBYTES,
crypto_generichash,
crypto_generichash_BYTES,
crypto_generichash_BYTES_MIN,
crypto_generichash_BYTES_MAX,
crypto_generichash_KEYBYTES,
crypto_generichash_KEYBYTES_MIN,
crypto_generichash_KEYBYTES_MAX,
crypto_kdf_derive_from_key,
crypto_kdf_CONTEXTBYTES,
crypto_kdf_KEYBYTES,
Expand Down

0 comments on commit db1adc0

Please sign in to comment.