ladybird/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 Everywhere: Remove unused includes of AK/Concepts.h 2023-01-02 20:27:20 -05:00
Verification.h AK+Userland: Use mpfard@serenityos.org for my copyright headers 2021-04-22 22:19:09 +02:00