projects
/
openssl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix bntest.c problem -- one of the primes got lost
[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
int BN_mod_sqrt(BIGNUM *x, BIGNUM *a, BIGNUM *p, BN_CTX *ctx);
19
20
#endif