Skip to content

Commit

Permalink
Fix indentation of tls13_hkdf_expand parameters
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from openssl#16489)
  • Loading branch information
danbev authored and paulidale committed Sep 2, 2021
1 parent f92bfdd commit 1b9e467
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ssl/tls13_enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ static const unsigned char label_prefix[] = "tls13 ";
* |fatal| is set. Returns 1 on success 0 on failure.
*/
int tls13_hkdf_expand(SSL *s, const EVP_MD *md, const unsigned char *secret,
const unsigned char *label, size_t labellen,
const unsigned char *data, size_t datalen,
unsigned char *out, size_t outlen, int fatal)
const unsigned char *label, size_t labellen,
const unsigned char *data, size_t datalen,
unsigned char *out, size_t outlen, int fatal)
{
EVP_KDF *kdf = EVP_KDF_fetch(s->ctx->libctx, OSSL_KDF_NAME_TLS1_3_KDF,
s->ctx->propq);
Expand Down

0 comments on commit 1b9e467

Please sign in to comment.