diff options
author | lloyd <[email protected]> | 2008-09-29 18:12:16 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-29 18:12:16 +0000 |
commit | 0d8e9744ef02aba33ddd89c93194ce526f6ff6ee (patch) | |
tree | e60064db23397f9a9dc3b847f9c4199be7c7ca0d /src/cert/x509 | |
parent | 26abd45c61294aacdd59fa4763ff1cd78aefbc7c (diff) |
Put only the implementation of BigInt in src/bigint, mathematical functions
on top of BigInt go to src/math. Some prototypes were moved in order to
complete the split, in particular random_integer() is now a static member
of BigInt instead of being a global function, and divide() is in divide.h
instead of numthry.h
Diffstat (limited to 'src/cert/x509')
-rw-r--r-- | src/cert/x509/x509_ca.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cert/x509/x509_ca.cpp b/src/cert/x509/x509_ca.cpp index 16cfc662c..f4edcc479 100644 --- a/src/cert/x509/x509_ca.cpp +++ b/src/cert/x509/x509_ca.cpp @@ -9,7 +9,7 @@ #include <botan/ber_dec.h> #include <botan/lookup.h> #include <botan/look_pk.h> -#include <botan/numthry.h> +#include <botan/bigint.h> #include <botan/parsing.h> #include <botan/oids.h> #include <botan/util.h> |