1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-27 05:52:06 +00:00
serenity/Userland/Libraries/LibCrypto
Shannon Booth e2e7c4d574 Everywhere: Use to_number<T> instead of to_{int,uint,float,double}
In a bunch of cases, this actually ends up simplifying the code as
to_number will handle something such as:

```
Optional<I> opt;
if constexpr (IsSigned<I>)
    opt = view.to_int<I>();
else
    opt = view.to_uint<I>();
```

For us.

The main goal here however is to have a single generic number conversion
API between all of the String classes.
2023-12-23 20:41:07 +01:00
..
AEAD LibCrypto: Add Chacha20Poly1305 2023-09-26 13:22:04 +03:30
ASN1 Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
Authentication Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
BigFraction Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
BigInt Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Checksum LibCrypto: Implement a generic 16-bit CRC 2023-08-12 12:25:26 -06:00
Cipher Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Curves LibCrypto: Fix SECP384r1 verification when hash is SHA256 2023-11-29 18:17:14 +03:30
Hash Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
NumberTheory Everywhere: Use nested namespace qualifiers 2023-07-12 10:05:42 +03:30
PK Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CMakeLists.txt LibCrypto+LibTLS: Switch to the generic SECPxxxr1 implementation 2023-11-27 09:43:07 +03:30
Forward.h
Verification.h