diff --git a/tfhe-csprng/src/generators/implem/aarch64/block_cipher.rs b/tfhe-csprng/src/generators/implem/aarch64/block_cipher.rs index 77734eaa0..e708b8cef 100644 --- a/tfhe-csprng/src/generators/implem/aarch64/block_cipher.rs +++ b/tfhe-csprng/src/generators/implem/aarch64/block_cipher.rs @@ -25,9 +25,8 @@ impl AesBlockCipher for ArmAesBlockCipher { if !(aes_detected && neon_detected) { panic!( "The ArmAesBlockCipher requires both aes and neon aarch64 CPU features.\n\ - aes feature available: {}\nneon feature available: {}\n\ + aes feature available: {aes_detected}\nneon feature available: {neon_detected}\n\ Please consider enabling the SoftwareRandomGenerator with the `software-prng` feature", - aes_detected, neon_detected ) }