RustCrypto / hashes

Collection of cryptographic hash functions written in pure Rust
1.75k stars 238 forks source link

sha2: use stabilized `core::arch::aarch64` intrinsics #570

Closed tarcieri closed 3 months ago

tarcieri commented 3 months ago

We were previously using inline assembly to "emulate" these intrinsics since the ones in core::arch had not yet been stabilized.

Given the new 1.72 MSRV, we should now be able to use the intrinsics.

tarcieri commented 3 months ago

My bad, I guess these aren't stabilized yet