chore: update toolchain to 2025-04-28

This commit is contained in:
David Testé
2025-04-29 11:25:52 +02:00
committed by David Testé
parent f5a52128e2
commit dc67ca721d
34 changed files with 164 additions and 176 deletions

View File

@@ -20,9 +20,8 @@ impl AesBlockCipher for AesniBlockCipher {
if !(aes_detected && sse2_detected) {
panic!(
"The AesniBlockCipher requires both aes and sse2 x86 CPU features.\n\
aes feature available: {}\nsse2 feature available: {}\n\
aes feature available: {aes_detected}\nsse2 feature available: {sse2_detected}\n\
Please consider enabling the SoftwareRandomGenerator with the `software-prng` feature",
aes_detected, sse2_detected
)
}