summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn.h
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-05-03 20:27:00 +0000
committerNils Larsch <nils@openssl.org>2005-05-03 20:27:00 +0000
commitf15c448a7261fb1edc983387c59e1d09f20f91a0 (patch)
treea4491298bd4e85db8906c420141473bad4dcb6da /crypto/bn/bn.h
parentfcb41c0ee8632a323bd2c2e39f401c4fcf31f3d4 (diff)
remove BN_ncopy, it was only used in bn_nist.c and wasn't particular
useful anyway
Diffstat (limited to 'crypto/bn/bn.h')
-rw-r--r--crypto/bn/bn.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h
index d118fc6a80..cd03dae77e 100644
--- a/crypto/bn/bn.h
+++ b/crypto/bn/bn.h
@@ -390,8 +390,6 @@ BIGNUM *BN_new(void);
void BN_init(BIGNUM *);
void BN_clear_free(BIGNUM *a);
BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b);
-/* BN_ncopy(): like BN_copy() but copies at most the first n BN_ULONGs */
-BIGNUM *BN_ncopy(BIGNUM *a, const BIGNUM *b, size_t n);
void BN_swap(BIGNUM *a, BIGNUM *b);
BIGNUM *BN_bin2bn(const unsigned char *s,int len,BIGNUM *ret);
int BN_bn2bin(const BIGNUM *a, unsigned char *to);