X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Finclude%2Finternal%2Fevp_int.h;h=e0914006ce07cd4ad3088b6ed275e0dd2ddf1041;hp=e84205c3b86f7766620e488140931c5d6dc1cc2a;hb=c3a261f8d31c1d04db01de36eccfe001b4ca0368;hpb=6723f86746ab7e8ff9a914603db4f85c53eafc7c diff --git a/crypto/include/internal/evp_int.h b/crypto/include/internal/evp_int.h index e84205c3b8..e0914006ce 100644 --- a/crypto/include/internal/evp_int.h +++ b/crypto/include/internal/evp_int.h @@ -1,7 +1,7 @@ /* * Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved. * - * Licensed under the OpenSSL license (the "License"). You may not use + * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html @@ -128,8 +128,18 @@ struct evp_mac_st { int (*ctrl_str) (EVP_MAC_IMPL *macctx, const char *type, const char *value); }; +extern const EVP_MAC blake2b_mac_meth; extern const EVP_MAC cmac_meth; +extern const EVP_MAC gmac_meth; extern const EVP_MAC hmac_meth; +extern const EVP_MAC kmac128_meth; +extern const EVP_MAC kmac256_meth; +extern const EVP_MAC siphash_meth; +extern const EVP_MAC poly1305_meth; + +/* Internal keccak algorithms used for KMAC */ +const EVP_MD *evp_keccak_kmac128(void); +const EVP_MD *evp_keccak_kmac256(void); /* * This function is internal for now, but can be made external when needed.