RustCrypto / hashes

Collection of cryptographic hash functions written in pure Rust
1.88k stars 253 forks source link

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

Closed tarcieri closed 3 months ago

tarcieri commented 4 months ago

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

They are now stable as of Rust 1.79.

Redux of #570.