diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2021-02-14 14:50:42 +0330 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-14 13:30:10 +0100 |
commit | 3fe7ac0924ada70faaf27636b6e0f40bcde24f77 (patch) | |
tree | bd8cecf5e567a2732899bca5e1d1e23d191bb848 /Meta | |
parent | 4d40864b9dc3837c00b1d02b567d6a648e0048f2 (diff) | |
download | serenity-3fe7ac0924ada70faaf27636b6e0f40bcde24f77.zip |
LibCrypto: Make a better ASN.1 parser
And use it to parse RSA keys.
As a bonus, this one shouldn't be reading out of bounds or messing with
the stack (as much) anymore.
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/CMake/all_the_debug_macros.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/CMake/all_the_debug_macros.cmake b/Meta/CMake/all_the_debug_macros.cmake index 702584f303..efe130a858 100644 --- a/Meta/CMake/all_the_debug_macros.cmake +++ b/Meta/CMake/all_the_debug_macros.cmake @@ -167,6 +167,7 @@ set(DEBUG_CPP_LANGUAGE_SERVER ON) set(DEBUG_AUTOCOMPLETE ON) set(FILE_WATCHER_DEBUG ON) set(SYSCALL_1_DEBUG ON) +set(RSA_PARSE_DEBUG ON) # False positive: DEBUG is a flag but it works differently. # set(DEBUG ON) |