lib:crypto: Use GnuTLS RC4 in py_crypto
authorAndreas Schneider <asn@samba.org>
Fri, 22 Feb 2019 11:59:13 +0000 (12:59 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 26 Jul 2019 01:48:26 +0000 (01:48 +0000)
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14031

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
lib/crypto/py_crypto.c
lib/crypto/wscript_build

index 13e2569945d9427150d703574af06358ee3fbafb..c85cd2c13d24e03b666b9c79c446bb121a89e369 100644 (file)
 #include <Python.h>
 #include "includes.h"
 #include "python/py3compat.h"
-#include "lib/crypto/arcfour.h"
+
+#include <gnutls/gnutls.h>
+#include <gnutls/crypto.h>
 
 static PyObject *py_crypto_arcfour_crypt_blob(PyObject *module, PyObject *args)
 {
-       DATA_BLOB data, key;
+       DATA_BLOB data;
        PyObject *py_data, *py_key, *result;
        TALLOC_CTX *ctx;
+       gnutls_cipher_hd_t cipher_hnd = NULL;
+       gnutls_datum_t key;
+       int rc;
 
        if (!PyArg_ParseTuple(args, "OO", &py_data, &py_key))
                return NULL;
@@ -51,10 +56,29 @@ static PyObject *py_crypto_arcfour_crypt_blob(PyObject *module, PyObject *args)
                return PyErr_NoMemory();
        }
 
-       key.data = (uint8_t *)PyBytes_AsString(py_key);
-       key.length = PyBytes_Size(py_key);
+       key = (gnutls_datum_t) {
+               .data = (uint8_t *)PyBytes_AsString(py_key),
+               .size = PyBytes_Size(py_key),
+       };
 
-       arcfour_crypt_blob(data.data, data.length, &key);
+       rc = gnutls_cipher_init(&cipher_hnd,
+                               GNUTLS_CIPHER_ARCFOUR_128,
+                               &key,
+                               NULL);
+       if (rc < 0) {
+               talloc_free(ctx);
+               PyErr_Format(PyExc_OSError, "encryption failed");
+               return NULL;
+       }
+       rc = gnutls_cipher_encrypt(cipher_hnd,
+                                  data.data,
+                                  data.length);
+       gnutls_cipher_deinit(cipher_hnd);
+       if (rc < 0) {
+               talloc_free(ctx);
+               PyErr_Format(PyExc_OSError, "encryption failed");
+               return NULL;
+       }
 
        result = PyBytes_FromStringAndSize((const char*) data.data, data.length);
        talloc_free(ctx);
index 2ad8dfe2cd02a322bf10613884c4747df5f66c2c..46b0e084328f9bbf5a90c5e829aa83ce288b01d1 100644 (file)
@@ -28,7 +28,6 @@ bld.SAMBA_SUBSYSTEM('TORTURE_LIBCRYPTO',
         )
 
 bld.SAMBA_PYTHON('python_crypto',
-                source='py_crypto.c',
-                deps='LIBCRYPTO',
-                realname='samba/crypto.so'
-               )
+                 source='py_crypto.c',
+                 deps='gnutls talloc',
+                 realname='samba/crypto.so')