diff options
| author | Michael Ford <[email protected]> | 2014-10-31 08:43:19 +0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-11-21 14:44:21 +0100 |
| commit | fa94b9d5623cfd16aa594c28432f25a17b0efb0e (patch) | |
| tree | 7c94530e14c0c3230883601157ab1cd81257806f /src/ecwrapper.cpp | |
| parent | Merge pull request #5170 (diff) | |
| download | discoin-fa94b9d5623cfd16aa594c28432f25a17b0efb0e.tar.xz discoin-fa94b9d5623cfd16aa594c28432f25a17b0efb0e.zip | |
Convert remaining comments in /src to doxygen format
- Update comments in checkpoints to be doxygen compatible
- Update comments in checkqueue to be doxygen compatible
- Update coins to be doxygen compatible
- Fix comment typo in crypter.h
- Update licenses/copyright dates
Closes #5325 #5184 #5183 #5182
Diffstat (limited to 'src/ecwrapper.cpp')
| -rw-r--r-- | src/ecwrapper.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ecwrapper.cpp b/src/ecwrapper.cpp index 68cdbf2ed..5ce7e6129 100644 --- a/src/ecwrapper.cpp +++ b/src/ecwrapper.cpp @@ -13,9 +13,11 @@ namespace { -// Perform ECDSA key recovery (see SEC1 4.1.6) for curves over (mod p)-fields -// recid selects which key is recovered -// if check is non-zero, additional checks are performed +/** + * Perform ECDSA key recovery (see SEC1 4.1.6) for curves over (mod p)-fields + * recid selects which key is recovered + * if check is non-zero, additional checks are performed + */ int ECDSA_SIG_recover_key_GFp(EC_KEY *eckey, ECDSA_SIG *ecsig, const unsigned char *msg, int msglen, int recid, int check) { if (!eckey) return 0; |