Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit29cb236

Browse files
quarcksterlevitte
authored andcommitted
add codespell pre-commit check and fix found misspellings
(cherry picked from commit2ade36d)
1 parent67acb2f commit29cb236

File tree

9 files changed

+462
-10
lines changed

9 files changed

+462
-10
lines changed

‎.codespellrc‎

Lines changed: 452 additions & 0 deletions
Large diffs are not rendered by default.

‎crypto/objects/obj_dat.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ static int add_object(const ASN1_OBJECT *obj, int indirect)
771771

772772
/*
773773
* Indirect calls leave the NID unspecified, in which case we generate a
774-
* fresh NID here. Direct calls via `OBJ_add_object()` mustexplicity
774+
* fresh NID here. Direct calls via `OBJ_add_object()` mustexplicitly
775775
* specify the nid, and we then also check against the compile-time bsearch
776776
* lists that the indirect calls have checked while holding a read lock.
777777
*/

‎doc/man7/EVP_PKEY-ML-DSA.pod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and the private key I<priv>.
1919
Each of the different key types has an associated security category.
2020
This value is one of 2, 3 or 5 for key types B<ML-DSA-44>, B<ML-DSA-65>
2121
and B<ML-DSA-87> respectively, which correspond to security strengths of
22-
128, 192 and 256repsectively.
22+
128, 192 and 256respectively.
2323

2424
=head2 Keygen Parameters
2525

‎doc/man7/EVP_PKEY-ML-KEM.pod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ configuration options programmatically.
110110

111111
=item C<ml-kem.import_pct_type> (B<OSSL_PKEY_PARAM_ML_KEM_IMPORT_PCT_TYPE>) <UTF8 string>
112112

113-
When an B<ML-KEM> key is imported as anexplict FIPS 203 B<dk> decapsulation
113+
When an B<ML-KEM> key is imported as anexplicit FIPS 203 B<dk> decapsulation
114114
key, rather than a seed, a pairwise consistency test (PCT) is optionally
115115
performed.
116116
By default, or when this parameter is set explicitly to C<random>, the PCT

‎doc/man7/EVP_SIGNATURE-ML-DSA.pod‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ L<FIPS 204|https://csrc.nist.gov/pubs/fips/204/final> Section 4 Table 1.
1717
(The signatures range in size from ~2.5K to ~4.5K depending on the type chosen).
1818
There are 3 different security categories also depending on the type.
1919

20-
L<EVP_SIGNATURE_fetch(3)> can be used toexplicitely fetch one of the 3
20+
L<EVP_SIGNATURE_fetch(3)> can be used toexplicitly fetch one of the 3
2121
algorithms which can then be used with L<EVP_PKEY_sign_message_init(3)>,
2222
L<EVP_PKEY_sign(3)>, L<EVP_PKEY_verify_message_init(3)>, and
2323
L<EVP_PKEY_verify(3)> to perform one-shot message signing or signature verification.
@@ -87,7 +87,7 @@ See L<EVP_PKEY-ML-DSA(7)> for information related to B<ML-DSA> keys.
8787

8888
=head1 NOTES
8989

90-
For backwardscompatability reasons EVP_DigestSignInit_ex(), EVP_DigestSign(),
90+
For backwardscompatibility reasons EVP_DigestSignInit_ex(), EVP_DigestSign(),
9191
EVP_DigestVerifyInit_ex() and EVP_DigestVerify() may also be used, but the digest
9292
passed in I<mdname> must be NULL.
9393

‎doc/man7/EVP_SIGNATURE-SLH-DSA.pod‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ C<s> types have smaller signature sizes, and the C<f> variants are faster,
2828
(The signatures range from ~8K to ~50K depending on the type chosen). There are
2929
3 different security categories also depending on the type.
3030

31-
L<EVP_SIGNATURE_fetch(3)> can be used toexplicitely fetch one of the 12
31+
L<EVP_SIGNATURE_fetch(3)> can be used toexplicitly fetch one of the 12
3232
algorithms which can then be used with L<EVP_PKEY_sign_message_init(3)>,
3333
L<EVP_PKEY_sign(3)>, L<EVP_PKEY_verify_message_init(3)>, and
3434
L<EVP_PKEY_verify(3)> to perform one-shot message signing or verification.
@@ -38,7 +38,7 @@ encodes the message internally as 0x00 || len(ctx) || ctx || message.
3838
where B<ctx> is some optional value of size 0x00..0xFF.
3939
OpenSSL also allows the message to not be encoded which is required for
4040
testing. OpenSSL does not support Pre Hash SLH-DSA Signature Generation, but this
41-
may be done by the user by doing Pre hash encoding externally and thenchosing
41+
may be done by the user by doing Pre hash encoding externally and thenchoosing
4242
the option to not encode the message.
4343

4444
=head2 SLH-DSA Signature Parameters

‎doc/man7/openssl-quic-concurrency.pod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ Specifying this flag configures the Single-Threaded Concurrency Model (SCM).
196196

197197
=item B<SSL_DOMAIN_FLAG_MULTI_THREAD>
198198

199-
Speciyfing this flag configures the Contentive Concurrency Model (CCM) (unless
199+
Specifying this flag configures the Contentive Concurrency Model (CCM) (unless
200200
B<SSL_DOMAIN_FLAG_THREAD_ASSISTED> is also specified).
201201

202202
=item B<SSL_DOMAIN_FLAG_THREAD_ASSISTED>

‎doc/man7/openssl-quic.pod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ L<SSL_accept_connection(3)>.
566566

567567
=item L<SSL_accept_connection(3)>
568568

569-
Accepts a new incoming connection for alistner SSL object. A new SSL object
569+
Accepts a new incoming connection for alistener SSL object. A new SSL object
570570
representing the accepted connection is created and returned on success. If no
571571
incoming connection is available and the listener SSL object is configured in
572572
nonblocking mode, NULL is returned.

‎doc/man7/provider-signature.pod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ Generation".
565565
The FIPS provider does not support deterministic digital signature generation
566566
for DSA.
567567

568-
The FIPS provider supportsdeterminisitic digital signature generation for
568+
The FIPS provider supportsdeterministic digital signature generation for
569569
ECDSA.
570570

571571
=item "kat" (B<OSSL_SIGNATURE_PARAM_KAT>) <unsigned integer>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp