Reformat annotations in preparation for automated extraction

This commit is contained in:
Vinnie Falco
2013-06-07 14:46:09 -07:00
parent 6d8ee90a8d
commit a6fdabc68a
89 changed files with 192 additions and 192 deletions

View File

@@ -36,7 +36,7 @@
class Base58
{
public:
// VFALCO: TODO, clean up this poor API
// VFALCO TODO clean up this poor API
static char const* getCurrentAlphabet ();
static void setCurrentAlphabet (char const* alphabet);

View File

@@ -51,7 +51,7 @@ public:
//------------------------------------------------------------------------------
// VFALCO: TODO figure out a way to remove the dependency on openssl in the
// VFALCO TODO figure out a way to remove the dependency on openssl in the
// header. Maybe rewrite this to use cryptopp.
class CBigNum : public BIGNUM
@@ -130,7 +130,7 @@ bool operator>(const CBigNum& a, const CBigNum& b);
//------------------------------------------------------------------------------
// VFALCO: NOTE, this seems as good a place as any for this.
// VFALCO NOTE this seems as good a place as any for this.
// Here's the old implementation using macros, in case something broke
//#if (ULONG_MAX > UINT_MAX)
@@ -140,7 +140,7 @@ bool operator>(const CBigNum& a, const CBigNum& b);
//#define BN_div_word64(bn, word) BN_div_word(bn, word)
//#endif
// VFALCO: I believe only STAmount uses these
// VFALCO I believe only STAmount uses these
extern int BN_add_word64 (BIGNUM *a, uint64 w);
extern int BN_sub_word64 (BIGNUM *a, uint64 w);
extern int BN_mul_word64 (BIGNUM *a, uint64 w);

View File

@@ -4,4 +4,4 @@
// file license.txt or http://www.opensource.org/licenses/mit-license.php.
// VFALCO: TODO, move inlined stuff from CKey into here
// VFALCO TODO move inlined stuff from CKey into here

View File

@@ -32,7 +32,7 @@
// see www.keylength.com
// script supports up to 75 for single byte push
// VFALCO: NOTE, this is unused
// VFALCO NOTE this is unused
/*
int static inline EC_KEY_regenerate_key(EC_KEY *eckey, BIGNUM *priv_key)
{

View File

@@ -2,7 +2,7 @@
// RFC 1751 code converted to C++/Boost.
//
// VFALCO: TODO, move these
// VFALCO TODO move these
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/trim.hpp>
#include <boost/algorithm/string/predicate.hpp>