Skip to content
New issue

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

Fix typos #1109

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion p192/src/test_vectors/ecdsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use hex_literal::hex;
/// (P-192, SHA-1, from `SigGen.txt` in `186-2ecdsatestvectors.zip`)
/// <https://csrc.nist.gov/projects/cryptographic-algorithm-validation-program/digital-signatures>
///
/// The `m` field contains a SHA-1 prehash of the `Msg` field in the
/// The `m` field contains an SHA-1 prehash of the `Msg` field in the
/// original `SigTen.txt`.

pub const ECDSA_TEST_VECTORS: &[TestVector; 15] = &[
Expand Down
2 changes: 1 addition & 1 deletion p224/src/test_vectors/ecdsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use hex_literal::hex;
/// (P-224, SHA-224, from `SigGen.txt` in `186-4ecdsatestvectors.zip`)
/// <https://csrc.nist.gov/projects/cryptographic-algorithm-validation-program/digital-signatures>
///
/// The `m` field contains a SHA-224 prehash of the `Msg` field in the
/// The `m` field contains an SHA-224 prehash of the `Msg` field in the
/// original `SigTen.txt`.

pub const ECDSA_TEST_VECTORS: &[TestVector; 15] = &[
Expand Down
2 changes: 1 addition & 1 deletion p384/src/test_vectors/ecdsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use hex_literal::hex;
/// (P-384, SHA-384, from `SigGen.txt` in `186-4ecdsatestvectors.zip`)
/// <https://csrc.nist.gov/projects/cryptographic-algorithm-validation-program/digital-signatures>
///
/// The `m` field contains a SHA-384 prehash of the `Msg` field in the
/// The `m` field contains an SHA-384 prehash of the `Msg` field in the
/// original `SigTen.txt`.
pub const ECDSA_TEST_VECTORS: &[TestVector; 15] = &[
TestVector {
Expand Down
2 changes: 1 addition & 1 deletion p521/src/test_vectors/ecdsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use hex_literal::hex;
/// (P-521, SHA-521, from `SigGen.txt` in `186-4ecdsatestvectors.zip`)
/// <https://csrc.nist.gov/projects/cryptographic-algorithm-validation-program/digital-signatures>
///
/// The `m` field contains a SHA-512 prehash of the `Msg` field in the
/// The `m` field contains an SHA-512 prehash of the `Msg` field in the
/// original `SigTen.txt`.

pub const ECDSA_TEST_VECTORS: &[TestVector] = &[
Expand Down
Loading