ladybird/Userland/Libraries/LibCrypto
Tim Ledbetter 72ea046b68 AK: Add option to the string formatter to use a digit separator
`vformat()` can now accept format specifiers of the form
{:'[numeric-type]}. This will output a number with a comma separator
every 3 digits.

For example:

`dbgln("{:'d}", 9999999);` will output 9,999,999.

Binary, octal and hexadecimal numbers can also use this feature, for
example:

`dbgln("{:'x}", 0xffffffff);` will output ff,fff,fff.
2023-04-11 13:03:30 +02:00
..
ASN1 LibCrypto: Add ability to rewrite current tag kind 2023-04-06 09:57:31 +03:30
Authentication LibCrypto: Do a simple copy for buffered GHash bytes 2023-02-08 17:53:19 +00:00
BigFraction LibCrypto+Everywhere: Rename *BigInteger::to_base to to_base_deprecated 2023-01-15 01:00:20 +00:00
BigInt Everywhere: Use _{short_,}string to create Strings from literals 2023-02-25 20:51:49 +01:00
Checksum LibCrypto: Implement little endian CRC using the slicing-by-8 algorithm 2023-03-31 06:56:05 +02:00
Cipher AK: Remove StringBuilder::build() in favor of to_deprecated_string() 2023-01-27 20:38:49 +00:00
Curves Everywhere: Remove unused DeprecatedString includes 2023-04-09 22:00:54 +02:00
Hash AK: Add option to the string formatter to use a digit separator 2023-04-11 13:03:30 +02:00
NumberTheory AK+Everywhere: Change AK::fill_with_random to accept a Bytes object 2023-04-03 15:53:49 +02:00
PK AK+Everywhere: Change AK::fill_with_random to accept a Bytes object 2023-04-03 15:53:49 +02:00
CMakeLists.txt Everywhere: Mark dependencies of most targets as PRIVATE 2022-11-01 14:49:09 +00:00
Forward.h Everywhere: Remove unused includes of AK/Concepts.h 2023-01-02 20:27:20 -05:00
Verification.h