Skip to content

Commit

Permalink
Merge pull request #65 from jackctj117/chacha20poly1305
Browse files Browse the repository at this point in the history
Chacha20poly1305
  • Loading branch information
bandi13 authored Oct 1, 2024
2 parents 59b3356 + 3923d7b commit 35e0b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_ffi.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def get_features(local_wolfssl, features):
features["WC_RNG_SEED_CB"] = 1 if '#define WC_RNG_SEED_CB' in defines else 0
features["AESGCM_STREAM"] = 1 if '#define WOLFSSL_AESGCM_STREAM' in defines else 0
features["RSA_PSS"] = 1 if '#define WC_RSA_PSS' in defines else 0
features["CHACHA20_POLY1305"] = 1 if '#define HAVE_CHACHA' & '#define HAVE_POLY1305' in defines else 0
features["CHACHA20_POLY1305"] = 1 if '#define HAVE_CHACHA' and '#define HAVE_POLY1305' in defines else 0

if '#define HAVE_FIPS' in defines:
if not fips:
Expand Down

0 comments on commit 35e0b1b

Please sign in to comment.