aboutsummaryrefslogtreecommitdiff
path: root/src/key.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-10-30 09:29:06 +0100
committerWladimir J. van der Laan <[email protected]>2014-10-30 10:09:23 +0100
commit4bbcc8d0e755560a097cc9cb5ede5e9d1167b234 (patch)
tree46b9dba4b24c31db06a163f0ca5e0dfc218f49df /src/key.cpp
parentMerge pull request #5100 (diff)
parentUpdate comments in keystore to be doxygen compatible (diff)
downloaddiscoin-4bbcc8d0e755560a097cc9cb5ede5e9d1167b234.tar.xz
discoin-4bbcc8d0e755560a097cc9cb5ede5e9d1167b234.zip
Merge pull request #5148
2b173d3 Update comments in keystore to be doxygen compatible (Michael Ford) ffd8edd Update comments in key to be doxygen compatible (Michael Ford)
Diffstat (limited to 'src/key.cpp')
-rw-r--r--src/key.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/key.cpp b/src/key.cpp
index 0f4bc6652..c466e84f2 100644
--- a/src/key.cpp
+++ b/src/key.cpp
@@ -1,5 +1,5 @@
// Copyright (c) 2009-2014 The Bitcoin developers
-// Distributed under the MIT/X11 software license, see the accompanying
+// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "key.h"
@@ -13,7 +13,7 @@
#include "ecwrapper.h"
#endif
-// anonymous namespace
+//! anonymous namespace
namespace {
#ifdef USE_SECP256K1
@@ -56,7 +56,7 @@ int CompareBigEndian(const unsigned char *c1, size_t c1len, const unsigned char
return 0;
}
-// Order of secp256k1's generator minus 1.
+/** Order of secp256k1's generator minus 1. */
const unsigned char vchMaxModOrder[32] = {
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,
@@ -64,7 +64,7 @@ const unsigned char vchMaxModOrder[32] = {
0xBF,0xD2,0x5E,0x8C,0xD0,0x36,0x41,0x40
};
-// Half of the order of secp256k1's generator minus 1.
+/** Half of the order of secp256k1's generator minus 1. */
const unsigned char vchMaxModHalfOrder[32] = {
0x7F,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,