We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sigma_1()
Requires #3
Another common permutation/compression function used in SHA-256 is commonly called $\Sigma_1$. It is implemented like so:
fn sigma_1(x: u32) -> u32 { rotate_right::<6>(x) ^ rotate_right::<11>(x) ^ rotate_right::<25>(x) }
where rotate_right() is a circular bitwise rotation described in #3.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Requires #3
Another common permutation/compression function used in SHA-256 is commonly called$\Sigma_1$ . It is implemented like so:
where rotate_right() is a circular bitwise rotation described in #3.
The text was updated successfully, but these errors were encountered: