Привязать к pgcrypto из Python
Я хотел бы вызвать некоторые функции pgcrypto из python. А именно px_crypt. Кажется, я не могу найти правильные объектные файлы для ссылки.
Вот мой код:
#include <Python.h>
#include "postgres.h"
#include "pgcrypto/px-crypt.h"
static PyObject*
pgcrypt(PyObject* self, PyObject* args)
{
const char* key;
const char* setting;
if (!PyArg_ParseTuple(args, "ss", &key, &setting))
return NULL;
return Py_BuildValue("s", px_crypt(key, setting, "", 0));
}
static PyMethodDef PgCryptMethods[] =
{
{"pgcrypt", pgcrypt, METH_VARARGS, "Call pgcrypto's crypt"},
{NULL, NULL, 0, NULL}
};
PyMODINIT_FUNC
initpypgcrypto(void)
{
(void) Py_InitModule("pypgcrypto", PgCryptMethods);
}
и команды gcc и вывод:
x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/home/ionut/github/postgres/contrib/ -I/usr/include/postgresql/9.4/server/ -I/usr/include/python2.7 -c pypgcrypto.c -o build/temp.linux-x86_64-2.7/pypgcrypto.o
x86_64-linux-gnu-gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wl,-z,relro -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security build/temp.linux-x86_64-2.7/pypgcrypto.o /usr/lib/postgresql/9.4/lib/pgcrypto.so -lpgport -lpq -o build/lib.linux-x86_64-2.7/pypgcrypto.so
Ошибка:
python -c "import pypgcrypto; print pypgcrypto.pgcrypt('foo', 'bar')"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: /usr/lib/postgresql/9.4/lib/pgcrypto.so: undefined symbol: InterruptPending
1 ответ
Из одного из ваших комментариев я получил это...
Я хочу повторить поведение pgcrypto, чтобы иметь возможность генерировать хэши паролей, которые совпадают с теми, которые уже есть в моей базе данных.
Вы можете использовать Python, чтобы сделать это уже. Я не знаю, какой алгоритм вы используете, и я не должен, вот два разных метода, использующих python для генерации точно такого же хеша, что и pgcrypto Postgresql
крипта
=# select crypt('12345678', gen_salt('xdes')), md5('test');
crypt | md5
----------------------+----------------------------------
_J9..b8FIoskMdlHvKjk | 098f6bcd4621d373cade4e832627b4f6
Вот Python для проверки пароля...
#!/usr/bin/env python
import crypt
from hmac import compare_digest as compare_hash
def login():
hash_ = '_J9..OtC82a6snTAAqWg'
print(compare_hash(crypt.crypt('123456789', hash_), hash_))
#return True
if __name__ == '__main__':
login()
MD5
Для MD5 вы можете использовать passlib
md5_crypt выглядит следующим образом...
=# select crypt('12345678', gen_salt('md5')), md5('test');
crypt | md5
------------------------------------+----------------------------------
$1$UUVXoPbO$JMA7yhrKvaZcKqoFoi9jl. | 098f6bcd4621d373cade4e832627b4f6
Python будет выглядеть примерно так...
#!/usr/bin/env python
from passlib.hash import md5_crypt
def login():
hash_ = '$1$kOFl2EuX$QhhnPMAdx2/j2Tsk15nfQ0'
print(md5_crypt.verify("12345678", hash_))
if __name__ == '__main__':
login()
Blowfish
select crypt('12345678', gen_salt('bf')), md5('test');
crypt | md5
--------------------------------------------------------------+----------------------------------
$2a$06$HLZUXMgqFhi/sl1D697il.lN8OMQFBWR2VBuZ5nTCd59jvGLU9pQ2 | 098f6bcd4621d373cade4e832627b4f6
Код Python...
#!/usr/bin/env python
from passlib.hash import md5_crypt
from passlib.hash import bcrypt
def blowfish():
hash_ = '$2a$06$HLZUXMgqFhi/sl1D697il.lN8OMQFBWR2VBuZ5nTCd59jvGLU9pQ2'
print(bcrypt.verify("12345678", hash_))
if __name__ == '__main__':
blowfish()