-
Notifications
You must be signed in to change notification settings - Fork 2
/
yescrypt.c
165 lines (148 loc) · 4.86 KB
/
yescrypt.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*-
* Copyright 2014 Alexander Peslyak
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <Python.h>
#include "yescrypt.h"
#include "sha256_c.h"
#include "yescrypt-best_c.h"
#define YESCRYPT_N 2048
#define YESCRYPT_R 8
#define YESCRYPT_P 1
#define YESCRYPT_T 0
#define YESCRYPT_FLAGS (YESCRYPT_RW | YESCRYPT_PWXFORM)
#ifdef __clang__
static int yescrypt_bitzeny(const uint8_t *passwd, size_t passwdlen,
const uint8_t *salt, size_t saltlen,
uint8_t *buf, size_t buflen)
{
yescrypt_shared_t shared;
yescrypt_local_t local;
int retval;
if (yescrypt_init_shared(&shared, NULL, 0,
0, 0, 0, YESCRYPT_SHARED_DEFAULTS, 0, NULL, 0))
return -1;
if (yescrypt_init_local(&local)) {
yescrypt_free_shared(&shared);
return -1;
}
retval = yescrypt_kdf(&shared, &local, passwd, passwdlen, salt, saltlen,
YESCRYPT_N, YESCRYPT_R, YESCRYPT_P, YESCRYPT_T,
YESCRYPT_FLAGS, buf, buflen);
if (yescrypt_free_local(&local)) {
yescrypt_free_shared(&shared);
return -1;
}
if (yescrypt_free_shared(&shared))
return -1;
return retval;
}
#else
static int yescrypt_bitzeny(const uint8_t *passwd, size_t passwdlen,
const uint8_t *salt, size_t saltlen,
uint8_t *buf, size_t buflen)
{
static __thread int initialized = 0;
static __thread yescrypt_shared_t shared;
static __thread yescrypt_local_t local;
int retval;
if (!initialized) {
/* "shared" could in fact be shared, but it's simpler to keep it private
* along with "local". It's dummy and tiny anyway. */
if (yescrypt_init_shared(&shared, NULL, 0,
0, 0, 0, YESCRYPT_SHARED_DEFAULTS, 0, NULL, 0))
return -1;
if (yescrypt_init_local(&local)) {
yescrypt_free_shared(&shared);
return -1;
}
initialized = 1;
}
retval = yescrypt_kdf(&shared, &local, passwd, passwdlen, salt, saltlen,
YESCRYPT_N, YESCRYPT_R, YESCRYPT_P, YESCRYPT_T,
YESCRYPT_FLAGS, buf, buflen);
#if 0
if (yescrypt_free_local(&local)) {
yescrypt_free_shared(&shared);
return -1;
}
if (yescrypt_free_shared(&shared))
return -1;
initialized = 0;
#endif
if (retval < 0) {
yescrypt_free_local(&local);
yescrypt_free_shared(&shared);
}
return retval;
}
#endif
static void yescrypt_hash(const char *input, char *output, int size)
{
yescrypt_bitzeny((const uint8_t *) input, size,
(const uint8_t *) input, size,
(uint8_t *) output, 32);
}
static PyObject *yescrypt_getpowhash(PyObject *self, PyObject *args)
{
char *output;
PyObject *value;
#if PY_MAJOR_VERSION >= 3
PyBytesObject *input;
#else
PyStringObject *input;
#endif
int size = 80;
if (!PyArg_ParseTuple(args, "S|i", &input, &size))
return NULL;
Py_INCREF(input);
output = PyMem_Malloc(32);
#if PY_MAJOR_VERSION >= 3
yescrypt_hash((char *)PyBytes_AsString((PyObject*) input), output, size);
#else
yescrypt_hash((char *)PyString_AsString((PyObject*) input), output, size);
#endif
Py_DECREF(input);
#if PY_MAJOR_VERSION >= 3
value = Py_BuildValue("y#", output, 32);
#else
value = Py_BuildValue("s#", output, 32);
#endif
PyMem_Free(output);
return value;
}
static PyMethodDef YescryptMethods[] = {
{ "getPoWHash", yescrypt_getpowhash, METH_VARARGS, "Returns the proof of work hash using yescrypt" },
{ NULL, NULL, 0, NULL }
};
#if PY_MAJOR_VERSION >= 3
static struct PyModuleDef YescryptModule = {
PyModuleDef_HEAD_INIT,
"yescrypt_hash",
"...",
-1,
YescryptMethods
};
PyMODINIT_FUNC PyInit_yescrypt(void) {
return PyModule_Create(&YescryptModule);
}
#else
PyMODINIT_FUNC inityescrypt(void) {
(void) Py_InitModule("yescrypt", YescryptMethods);
}
#endif