mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 03:50:57 +01:00
changed invalid // c++ comments to valid /* .. */ C comments
This commit is contained in:
@@ -22,9 +22,9 @@
|
||||
#include "scrypt.h"
|
||||
|
||||
unsigned char* pcp_scrypt(char *passwd, size_t passwdlen, unsigned char *nonce, size_t noncelen) {
|
||||
uint8_t *dk = ucmalloc(64); // resulting hash
|
||||
uint8_t *dk = ucmalloc(64); /* resulting hash */
|
||||
|
||||
// constants
|
||||
/* constants */
|
||||
uint64_t N = 1 << 14;
|
||||
uint32_t r = 8;
|
||||
uint32_t p = 1;
|
||||
|
||||
Reference in New Issue
Block a user