diff options
author | tb <> | 2022-01-12 08:52:25 +0000 |
---|---|---|
committer | tb <> | 2022-01-12 08:52:25 +0000 |
commit | d040a2535c88a2cc45f298fdb891f0e3dd7ec0e0 (patch) | |
tree | 46756e36c1b4bc5923f077233c39488c37a59e45 /src | |
parent | 609076ea072d474160a02eac6c5e96b36937d9a5 (diff) | |
download | openbsd-d040a2535c88a2cc45f298fdb891f0e3dd7ec0e0.tar.gz openbsd-d040a2535c88a2cc45f298fdb891f0e3dd7ec0e0.tar.bz2 openbsd-d040a2535c88a2cc45f298fdb891f0e3dd7ec0e0.zip |
Fix typo in header guard
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/evp/evp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h index 7fae46f610..df71b0ac16 100644 --- a/src/lib/libcrypto/evp/evp.h +++ b/src/lib/libcrypto/evp/evp.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: evp.h,v 1.95 2022/01/10 13:42:28 tb Exp $ */ | 1 | /* $OpenBSD: evp.h,v 1.96 2022/01/12 08:52:25 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -517,7 +517,7 @@ int EVP_MD_meth_set_ctrl(EVP_MD *md, | |||
517 | 517 | ||
518 | const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx); | 518 | const EVP_MD *EVP_MD_CTX_md(const EVP_MD_CTX *ctx); |
519 | void *EVP_MD_CTX_md_data(const EVP_MD_CTX *ctx); | 519 | void *EVP_MD_CTX_md_data(const EVP_MD_CTX *ctx); |
520 | #if defined(LIBRESSL_CRYPTO_INTERANL) || defined(LIBRESSL_NEXT_API) | 520 | #if defined(LIBRESSL_CRYPTO_INTERNAL) || defined(LIBRESSL_NEXT_API) |
521 | EVP_PKEY_CTX *EVP_MD_CTX_pkey_ctx(const EVP_MD_CTX *ctx); | 521 | EVP_PKEY_CTX *EVP_MD_CTX_pkey_ctx(const EVP_MD_CTX *ctx); |
522 | void EVP_MD_CTX_set_pkey_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pctx); | 522 | void EVP_MD_CTX_set_pkey_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pctx); |
523 | #endif | 523 | #endif |
@@ -1378,7 +1378,7 @@ typedef struct evp_aead_ctx_st { | |||
1378 | * should be used. */ | 1378 | * should be used. */ |
1379 | #define EVP_AEAD_DEFAULT_TAG_LENGTH 0 | 1379 | #define EVP_AEAD_DEFAULT_TAG_LENGTH 0 |
1380 | 1380 | ||
1381 | #if defined(LIBRESSL_CRYPTO_INTERANL) || defined(LIBRESSL_NEXT_API) | 1381 | #if defined(LIBRESSL_CRYPTO_INTERNAL) || defined(LIBRESSL_NEXT_API) |
1382 | /* EVP_AEAD_CTX_new allocates a new context for use with EVP_AEAD_CTX_init. | 1382 | /* EVP_AEAD_CTX_new allocates a new context for use with EVP_AEAD_CTX_init. |
1383 | * It can be cleaned up for reuse with EVP_AEAD_CTX_cleanup and must be freed | 1383 | * It can be cleaned up for reuse with EVP_AEAD_CTX_cleanup and must be freed |
1384 | * with EVP_AEAD_CTX_free. */ | 1384 | * with EVP_AEAD_CTX_free. */ |