From f84997825feb1cc12a8f11ea083be133bdb8d229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Wed, 11 Jan 2006 08:34:55 +0000 Subject: [PATCH] (BN_uadd): Add. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16520 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/des/bn.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/des/bn.h b/lib/des/bn.h index 337a5b99c..8f946b199 100644 --- a/lib/des/bn.h +++ b/lib/des/bn.h @@ -61,6 +61,7 @@ #define BN_set_bit hc_BN_set_bit #define BN_set_negative hc_BN_set_negative #define BN_set_word hc_BN_set_word +#define BN_uadd hc_BN_uadd /* * @@ -110,6 +111,8 @@ int BN_bn2bin(const BIGNUM *, void *); int BN_hex2bn(BIGNUM **, const char *); char * BN_bn2hex(const BIGNUM *); +int BN_uadd(BIGNUM *, const BIGNUM *, const BIGNUM *); + int BN_rand(BIGNUM *, int, int, int); void BN_GENCB_set(BN_GENCB *, int (*)(int, int, BN_GENCB *), void *);