We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a53d714 commit 27999e0Copy full SHA for 27999e0
sm4/src/armv8/autodetect/linux.rs
@@ -28,9 +28,9 @@ impl KeySizeUser for Sm4 {
28
impl KeyInit for Sm4 {
29
#[inline]
30
fn new(key: &Key<Self>) -> Self {
31
- let (token, intrinsics_presense) = sm4_intrinsics::init_get();
+ let (token, intrinsics_presence) = sm4_intrinsics::init_get();
32
33
- let cipher = if intrinsics_presense {
+ let cipher = if intrinsics_presence {
34
Sm4Cipher {
35
sm4: ManuallyDrop::new(CryptoExtensionSm4::new(key)),
36
}
0 commit comments