diff options
author | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2018-02-16 15:45:32 +0100 |
---|---|---|
committer | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2018-03-17 18:24:03 +0100 |
commit | dd07e68b2066745caa7f0d9f866cfb6fdf0fc89f (patch) | |
tree | a7a4469e3312c7473d80ecca398c6a81ff0d56fe /ssl/t1_trce.c | |
parent | ts_RESP_sign: Don't try to use v2 signing when ESS digest isn't set (diff) | |
download | openssl-dd07e68b2066745caa7f0d9f866cfb6fdf0fc89f.tar.xz openssl-dd07e68b2066745caa7f0d9f866cfb6fdf0fc89f.zip |
Fix miscellaneous typos in docs and source
- d2i_PKC8PrivateKey -> d2i_PKCS8PrivateKey
- bechmark -> benchmark
- ciperhsuite -> ciphersuite
- EncyptedPreMasterSecret -> EncryptedPreMasterSecret
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5570)
Diffstat (limited to 'ssl/t1_trce.c')
-rw-r--r-- | ssl/t1_trce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c index 3186b98755..55f1824183 100644 --- a/ssl/t1_trce.c +++ b/ssl/t1_trce.c @@ -1086,10 +1086,10 @@ static int ssl_print_client_keyex(BIO *bio, int indent, const SSL *ssl, case SSL_kRSAPSK: if (TLS1_get_version(ssl) == SSL3_VERSION) { ssl_print_hex(bio, indent + 2, - "EncyptedPreMasterSecret", msg, msglen); + "EncryptedPreMasterSecret", msg, msglen); } else { if (!ssl_print_hexbuf(bio, indent + 2, - "EncyptedPreMasterSecret", 2, &msg, &msglen)) + "EncryptedPreMasterSecret", 2, &msg, &msglen)) return 0; } break; |