Difference between revisions of "Multiprecision arithmetic internals"

From OpenSSLWiki
Jump to navigationJump to search
(Added broken link note to bn(3) overview)
(Added a second broken link note)
 
Line 5: Line 5:
 
[http://www.openssl.org/docs/crypto/bn.html "bn(3) overview"]{{Broken Link}}
 
[http://www.openssl.org/docs/crypto/bn.html "bn(3) overview"]{{Broken Link}}
  
[http://www.openssl.org/docs/crypto/bn_internal.html "bn_internal(3)"],
+
[http://www.openssl.org/docs/crypto/bn_internal.html "bn_internal(3)"]{{Broken Link}},
 
BIGNUM library internal functions "to facilitate debugging and extending the library.
 
BIGNUM library internal functions "to facilitate debugging and extending the library.
 
They are not to be used by applications."
 
They are not to be used by applications."

Latest revision as of 06:16, 29 July 2019

OpenSSL includes an implementation of multiprecision arithmetic, used for dealing with the large numbers used in public-key cryptography and a few other cryptographic algorithms.


"bn(3) overview"[Broken Link]


"bn_internal(3)"[Broken Link] , BIGNUM library internal functions "to facilitate debugging and extending the library. They are not to be used by applications."

Other popular multiprecision libraries and tools that perhaps might be useful for testing OpenSSL's multiprecision implementation include: GMP, the bc programming language, etc.