1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-22 19:37:34 +00:00
serenity/Userland/Libraries/LibCrypto/Hash
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
..
HashFunction.h AK: Add option to the string formatter to use a digit separator 2023-04-11 13:03:30 +02:00
HashManager.h AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
MD5.cpp LibCrypto: Use nested namespace specifiers in Hash/ 2023-01-05 10:54:35 +01:00
MD5.h LibCrypto: Use nested namespace specifiers in Hash/ 2023-01-05 10:54:35 +01:00
PBKDF2.h LibCrypto: Add PBKDF2 2023-04-09 17:05:18 -06:00
SHA1.cpp LibCrypto: Update entire blocks in SHA*::update() 2023-03-24 15:28:10 +00:00
SHA1.h LibCrypto: Use nested namespace specifiers in Hash/ 2023-01-05 10:54:35 +01:00
SHA2.cpp LibCrypto: Update entire blocks in SHA*::update() 2023-03-24 15:28:10 +00:00
SHA2.h LibCrypto: Use nested namespace specifiers in Hash/ 2023-01-05 10:54:35 +01:00