Undo previous commit, which was an accident.
[oweals/openssl.git] / crypto / bn / bn_modfs.h
index b7ae4964d87b4bdbf708b4432013475f0c501d75..dd0677ed63f414f18d098fd7201e38cfc6184def 100644 (file)
@@ -1,32 +1,22 @@
-/*\r
- *\r
- *     bn_modfs.h\r
- *\r
- *     Some Modular Arithmetic Functions.\r
- *\r
- *     Copyright (C) Lenka Fibikova 2000\r
- *\r
- *\r
- */\r
-\r
-#ifndef HEADER_BN_MODFS_H\r
-#define HEADER_BN_MODFS_H\r
-\r
-\r
-#include "bn.h"\r
-\r
-#ifdef BN_is_zero\r
-#undef BN_is_zero\r
-#define BN_is_zero(a)  (((a)->top == 0) || (((a)->top == 1) && ((a)->d[0] == (BN_ULONG)0)))\r
-#endif /*BN_is_zero(a)*/\r
-\r
-\r
-int BN_smod(BIGNUM *rem, BIGNUM *m, BIGNUM *d, BN_CTX *ctx);\r
-int BN_mod_sub(BIGNUM *r, BIGNUM *a, BIGNUM *b, BIGNUM *m, BN_CTX *ctx);\r
-int BN_mod_add(BIGNUM *r, BIGNUM *a, BIGNUM *b, BIGNUM *m, BN_CTX *ctx); \r
-int BN_mod_sqr(BIGNUM *r, BIGNUM *a, BIGNUM *p, BN_CTX *ctx);\r
-int BN_swap(BIGNUM *x, BIGNUM *y);\r
-int BN_legendre(BIGNUM *a, BIGNUM *p, BN_CTX *ctx);\r
-int BN_mod_sqrt(BIGNUM *x, BIGNUM *a, BIGNUM *p, BN_CTX *ctx);\r
-\r
-#endif
\ No newline at end of file
+/*
+ *
+ *     bn_modfs.h
+ *
+ *     Some Modular Arithmetic Functions.
+ *
+ *     Copyright (C) Lenka Fibikova 2000
+ *
+ *
+ */
+
+#ifndef HEADER_BN_MODFS_H
+#define HEADER_BN_MODFS_H
+
+
+#include <openssl/bn.h>
+
+
+int BN_legendre(BIGNUM *a, BIGNUM *p, BN_CTX *ctx);
+int BN_mod_sqrt(BIGNUM *x, BIGNUM *a, BIGNUM *p, BN_CTX *ctx);
+
+#endif