Merge pull request #65 from jackctj117/chacha20poly1305

Chacha20poly1305
pull/66/head
András Fekete 2024-10-01 15:34:51 -04:00 committed by GitHub
commit 35e0b1b373
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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: