Does SHA512SIG1L use floating-point or vector registers?
No. These scalar crypto extension instructions use integer X registers.
Low 32 bits of SHA-512 σ1 (RV32): rs1 is low input and rs2 is high input
sha512sig1l is the SHA-512 σ1 low-half instruction (RV32 only). It reads rs1 as the low 32-bit input word and rs2 as the high word, then writes the official RV32 formula's low result word to rd. The documented full transform uses sha512sig1l t0, low, high followed by sha512sig1h t1, high, low.
Applies the official RV32 formula for one SHA-512 Sigma result word.
XLEN is fixed at 32. For the low form, rs1 is the input low word and rs2 is the input high word.
This animation shows only official ISA fields and architectural state; it does not model a complete hash algorithm or microarchitecture.
SHA512SIG1L is a Zknh scalar cryptography instruction for SHA-512 RV32 split transform. This page is checked against the official scalar crypto extension, avoiding confusion among round functions, key schedule steps, and operand sources.
Understand this scenario with real code like «sha512sig1l a0, a1, a2».
Understand this scenario with real code like «sha512sig1l a0, a1, a2».
No. These scalar crypto extension instructions use integer X registers.
No. It computes one RV32 word of the SHA-512 Sigma1 result; the documented L/H paired sequence combines the complete transform.