You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 0.16.1, IDEA support does not get enabled despite Botan supporting it
Steps to Reproduce
Run cmake -S rnp-0.16.1 -B build
Build: cd build && make
Execute the built "rnpkeys" binary without any arguments: ./src/rnpkeys/rnpkeys
Expected Behavior
The "Encryption" line should include "IDEA" in its list
Actual Behavior
IDEA does not appear in the "Encryption" line: Encryption: TRIPLEDES, CAST5, BLOWFISH, AES128, AES192, AES256, TWOFISH, CAMELLIA128, CAMELLIA192, CAMELLIA256, SM4
Adding #cmakedefine ENABLE_IDEA to be src/lib/config.h.in fixes the issue.
The text was updated successfully, but these errors were encountered:
Description
In 0.16.1, IDEA support does not get enabled despite Botan supporting it
Steps to Reproduce
cmake -S rnp-0.16.1 -B build
cd build && make
./src/rnpkeys/rnpkeys
Expected Behavior
The "Encryption" line should include "IDEA" in its list
Actual Behavior
IDEA does not appear in the "Encryption" line:
Encryption: TRIPLEDES, CAST5, BLOWFISH, AES128, AES192, AES256, TWOFISH, CAMELLIA128, CAMELLIA192, CAMELLIA256, SM4
Adding
#cmakedefine ENABLE_IDEA
to besrc/lib/config.h.in
fixes the issue.The text was updated successfully, but these errors were encountered: