X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=providers%2Fimplementations%2Fdigests%2Fwp_prov.c;h=2af70b337281f7281e7c85f889ad7636405ce661;hp=1dd5aa36e41179e02f6efbd2639502f1ae2f8bb8;hb=HEAD;hpb=7c214f1092f7622a1c2fdc5cfe70ddc94918daa3 diff --git a/providers/implementations/digests/wp_prov.c b/providers/implementations/digests/wp_prov.c index 1dd5aa36e4..2af70b3372 100644 --- a/providers/implementations/digests/wp_prov.c +++ b/providers/implementations/digests/wp_prov.c @@ -1,5 +1,5 @@ /* - * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved. * * 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 @@ -7,12 +7,18 @@ * https://www.openssl.org/source/license.html */ +/* + * Whirlpool low level APIs are deprecated for public use, but still ok for + * internal use. + */ +#include "internal/deprecated.h" + #include #include #include "prov/digestcommon.h" -#include "internal/provider_algs.h" +#include "prov/implementations.h" -/* wp_functions */ +/* ossl_wp_functions */ IMPLEMENT_digest_functions(wp, WHIRLPOOL_CTX, WHIRLPOOL_BBLOCK / 8, WHIRLPOOL_DIGEST_LENGTH, 0, WHIRLPOOL_Init, WHIRLPOOL_Update, WHIRLPOOL_Final)