]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/dsa/dsa_vrf.c
Deprecate the low level DSA functions.
[thirdparty/openssl.git] / crypto / dsa / dsa_vrf.c
CommitLineData
d2e9e320
RS
1/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
3cdbea65 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
d2e9e320
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
f41ac0ee
P
10/*
11 * DSA low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14#include "internal/deprecated.h"
15
b39fc560 16#include "internal/cryptlib.h"
706457b7 17#include "dsa_local.h"
d02b48c6 18
61f5b6f3 19int DSA_do_verify(const unsigned char *dgst, int dgst_len, DSA_SIG *sig,
0f113f3e
MC
20 DSA *dsa)
21{
22 return dsa->meth->dsa_do_verify(dgst, dgst_len, sig, dsa);
23}