Deleted Added
full compact
mp.h (80529) mp.h (110011)
1/* $FreeBSD: head/lib/libmp/mp.h 80529 2001-07-29 08:49:15Z dd $ */
1/* $FreeBSD: head/lib/libmp/mp.h 110011 2003-01-28 23:03:15Z markm $ */
2
3#ifndef _MP_H_
4#define _MP_H_
5
2
3#ifndef _MP_H_
4#define _MP_H_
5
6#ifndef HEADER_BN_H_
6#include <openssl/bn.h>
7#include <openssl/bn.h>
8#endif
7
8typedef struct _mint {
9 BIGNUM *bn;
10} MINT;
11
12void gcd(const MINT *, const MINT *, MINT *);
13MINT *itom(short);
14void madd(const MINT *, const MINT *, MINT *);

--- 16 unchanged lines hidden ---
9
10typedef struct _mint {
11 BIGNUM *bn;
12} MINT;
13
14void gcd(const MINT *, const MINT *, MINT *);
15MINT *itom(short);
16void madd(const MINT *, const MINT *, MINT *);

--- 16 unchanged lines hidden ---