Skip to content

Commit 9d419ce

Browse files
Bob Becknebeid
Bob Beck
authored andcommitted
Fix spelling of Identifier
Make google3 common typos stop complaining in the future. Change-Id: Ib5156335afa691427dbe618c8b29797665cef35f Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/66947 Auto-Submit: Bob Beck <[email protected]> Commit-Queue: Bob Beck <[email protected]> Reviewed-by: David Benjamin <[email protected]> (cherry picked from commit 3ac09394a0c027ca077b8cfda4c0dbc8837ce87a)
1 parent 432cfce commit 9d419ce

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

crypto/x509/internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ int x509_print_rsa_pss_params(BIO *bp, const X509_ALGOR *sigalg, int indent,
394394
// Signature algorithm functions.
395395

396396
// x509_digest_sign_algorithm encodes the signing parameters of |ctx| as an
397-
// AlgorithmIdentifer and saves the result in |algor|. It returns one on
397+
// AlgorithmIdentifier and saves the result in |algor|. It returns one on
398398
// success, or zero on error.
399399
int x509_digest_sign_algorithm(EVP_MD_CTX *ctx, X509_ALGOR *algor);
400400

include/openssl/ssl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4227,7 +4227,7 @@ OPENSSL_EXPORT void SSL_get0_ech_retry_configs(
42274227
// to the size of the buffer. The caller must call |OPENSSL_free| on |*out| to
42284228
// release the memory. On failure, it returns zero.
42294229
//
4230-
// The |config_id| field is a single byte identifer for the ECHConfig. Reusing
4230+
// The |config_id| field is a single byte identifier for the ECHConfig. Reusing
42314231
// config IDs is allowed, but if multiple ECHConfigs with the same config ID are
42324232
// active at a time, server load may increase. See
42334233
// |SSL_ECH_KEYS_has_duplicate_config_id|.

include/openssl/x509.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,9 @@ OPENSSL_EXPORT void X509_get0_uids(const X509 *x509,
257257
// should not be accepted.
258258
#define EXFLAG_CRITICAL 0x200
259259
// EXFLAG_SS indicates the certificate is likely self-signed. That is, if it is
260-
// self-issued, its authority key identifer (if any) matches itself, and its key
261-
// usage extension (if any) allows certificate signatures. The signature itself
262-
// is not checked in computing this bit.
260+
// self-issued, its authority key identifier (if any) matches itself, and its
261+
// key usage extension (if any) allows certificate signatures. The signature
262+
// itself is not checked in computing this bit.
263263
#define EXFLAG_SS 0x2000
264264

265265
// X509_get_extension_flags decodes a set of extensions from |x509| and returns

ssl/test/runner/common.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1182,10 +1182,10 @@ type ProtocolBugs struct {
11821182
// RSA_EXPORT) in the plain RSA key exchange.
11831183
RSAEphemeralKey bool
11841184

1185-
// SRTPMasterKeyIdentifer, if not empty, is the SRTP MKI value that the
1185+
// SRTPMasterKeyIdentifier, if not empty, is the SRTP MKI value that the
11861186
// client offers when negotiating SRTP. MKI support is still missing so
11871187
// the peer must still send none.
1188-
SRTPMasterKeyIdentifer string
1188+
SRTPMasterKeyIdentifier string
11891189

11901190
// SendSRTPProtectionProfile, if non-zero, is the SRTP profile that the
11911191
// server sends in the ServerHello instead of the negotiated one.

ssl/test/runner/handshake_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ func (hs *clientHandshakeState) createClientHello(innerHello *clientHelloMsg, ec
521521
channelIDSupported: c.config.ChannelID != nil,
522522
extendedMasterSecret: maxVersion >= VersionTLS10,
523523
srtpProtectionProfiles: c.config.SRTPProtectionProfiles,
524-
srtpMasterKeyIdentifier: c.config.Bugs.SRTPMasterKeyIdentifer,
524+
srtpMasterKeyIdentifier: c.config.Bugs.SRTPMasterKeyIdentifier,
525525
customExtension: c.config.Bugs.CustomExtension,
526526
omitExtensions: c.config.Bugs.OmitExtensions,
527527
emptyExtensions: c.config.Bugs.EmptyExtensions,

ssl/test/runner/runner.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8415,7 +8415,7 @@ func addExtensionTests() {
84158415
MaxVersion: ver.version,
84168416
SRTPProtectionProfiles: []uint16{SRTP_AES128_CM_HMAC_SHA1_80},
84178417
Bugs: ProtocolBugs{
8418-
SRTPMasterKeyIdentifer: "bogus",
8418+
SRTPMasterKeyIdentifier: "bogus",
84198419
},
84208420
},
84218421
flags: []string{

util/fipstools/delocate/delocate.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import (
3535
// inputFile represents a textual assembly file.
3636
type inputFile struct {
3737
path string
38-
// index is a unique identifer given to this file. It's used for
38+
// index is a unique identifier given to this file. It's used for
3939
// mapping local symbols.
4040
index int
4141
// isArchive indicates that the input should be processed as an ar

0 commit comments

Comments
 (0)