Skip to content

Commit af86cd3

Browse files
HollowMan6XueleiFan
authored andcommittedJul 19, 2022
8290463: Fix several comment typos in sun.security.ec
Reviewed-by: xuelei
1 parent 6cd1c0c commit af86cd3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎src/jdk.crypto.ec/share/classes/sun/security/ec/ECDHKeyAgreement.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ private static void validate(ECOperations ops, ECPublicKey key)
176176
// (point of infinity). However, the point of infinity has no
177177
// affine coordinates, although the point of infinity could
178178
// be encoded. Per IEEE 1363.3-2013 (see section A.6.4.1),
179-
// the point of inifinity is represented by a pair of
179+
// the point of infinity is represented by a pair of
180180
// coordinates (x, y) not on the curve. For EC prime finite
181181
// field (q = p^m), the point of infinity is (0, 0) unless
182182
// b = 0; in which case it is (0, 1).

‎src/jdk.crypto.ec/share/classes/sun/security/ec/ECDSAOperations.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Optional<ECDSAOperations> forParameters(ECParameterSpec ecParams) {
114114
* @return the ECDSA signature value
115115
* @throws IntermediateValueException if the signature cannot be produced
116116
* due to an unacceptable intermediate or final value. If this
117-
* exception is thrown, then the caller should discard the nonnce and
117+
* exception is thrown, then the caller should discard the nonce and
118118
* try again with an entirely new nonce value.
119119
*/
120120
public byte[] signDigest(byte[] privateKey, byte[] digest, Seed seed)
@@ -142,7 +142,7 @@ public byte[] signDigest(byte[] privateKey, byte[] digest, Seed seed)
142142
* @return the ECDSA signature value
143143
* @throws IntermediateValueException if the signature cannot be produced
144144
* due to an unacceptable intermediate or final value. If this
145-
* exception is thrown, then the caller should discard the nonnce and
145+
* exception is thrown, then the caller should discard the nonce and
146146
* try again with an entirely new nonce value.
147147
*/
148148
public byte[] signDigest(byte[] privateKey, byte[] digest, Nonce nonce)

‎src/jdk.crypto.ec/share/classes/sun/security/ec/ed/EdDSAParameters.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public Digester createDigester() {
8585
return new SHAKE256Digester(114);
8686
}
8787

88-
// Ed448 uses 64bytes long hasg for the signature message
88+
// Ed448 uses 64bytes long hash for the signature message
8989
@Override
9090
public Digester createDigester(int len) {
9191
return new SHAKE256Digester(len);

0 commit comments

Comments
 (0)
Please sign in to comment.