More BN_mod_... functions.
[openssl.git] / crypto / bn / bn_modfs.h
1 /*
2  *
3  *      bn_modfs.h
4  *
5  *      Some Modular Arithmetic Functions.
6  *
7  *      Copyright (C) Lenka Fibikova 2000
8  *
9  *
10  */
11
12 #ifndef HEADER_BN_MODFS_H
13 #define HEADER_BN_MODFS_H
14
15
16 #include <openssl/bn.h>
17
18
19 int BN_legendre(BIGNUM *a, BIGNUM *p, BN_CTX *ctx);
20 int BN_mod_sqrt(BIGNUM *x, BIGNUM *a, BIGNUM *p, BN_CTX *ctx);
21
22 #endif