diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-03-26 16:48:23 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-03-26 16:48:23 +0200 |
commit | 6b8de05d0a6696dff4b7dccec5b74889f3cdc486 (patch) | |
tree | 123b892a842e3a99342cc4806b4a833b2a635b52 /src/bignum.h | |
parent | 01a196e08db49d83cf6c5abd8a799c56dcfef503 (diff) |
Begin doxygen-compatible comments
Diffstat (limited to 'src/bignum.h')
-rw-r--r-- | src/bignum.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bignum.h b/src/bignum.h index a750025f3d..c7c2ff1730 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -11,6 +11,7 @@ #include "util.h" +/** Errors thrown by the bignum class */ class bignum_error : public std::runtime_error { public: @@ -18,7 +19,7 @@ public: }; - +/** RAII encapsulated BN_CTX (OpenSSL bignum context) */ class CAutoBN_CTX { protected: @@ -46,7 +47,7 @@ public: }; - +/** C++ wrapper for BIGNUM (OpenSSl bignum) */ class CBigNum : public BIGNUM { public: |