summaryrefslogtreecommitdiff
path: root/gnu/packages/python-crypto.scm
diff options
context:
space:
mode:
authorAlexandros Theodotou <alex@zrythm.org>2020-01-08 14:56:52 +0000
committerChristopher Baines <mail@cbaines.net>2020-03-26 19:14:44 +0000
commit163997c9615baa1ad57b25c0ee37469e6074cce9 (patch)
tree436dcb7ce0d76b1070a2c2a0a6ee0201c17a1bc9 /gnu/packages/python-crypto.scm
parentf8dcdf2b365118b5e46972c4c7a07b922775fb8f (diff)
gnu: Add python-ntlm-auth.
* gnu/packages/python-crypto.scm (python-ntlm-auth): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-rw-r--r--gnu/packages/python-crypto.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 49525c099a8..80160301ddb 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -1281,6 +1281,35 @@ package provides a tool to securely sign firmware images for booting by
1281MCUboot.") 1281MCUboot.")
1282 (license license:expat))) 1282 (license license:expat)))
1283 1283
1284(define-public python-ntlm-auth
1285 (package
1286 (name "python-ntlm-auth")
1287 (version "1.4.0")
1288 (source
1289 (origin
1290 (method url-fetch)
1291 (uri (pypi-uri "ntlm-auth" version))
1292 (sha256
1293 (base32
1294 "16mavidki4ma5ip8srqalr19gz4f5yn3cnmmgps1fmgfr24j63rm"))))
1295 (build-system python-build-system)
1296 (propagated-inputs
1297 `(("python-cryptography" ,python-cryptography)))
1298 (home-page "https://github.com/jborean93/ntlm-auth")
1299 (synopsis
1300 "Calculates NTLM Authentication codes")
1301 (description
1302 "This library handles the low-level details of NTLM authentication for
1303use in authenticating with a service that uses NTLM. It will create and parse
1304the 3 different message types in the order required and produce a base64
1305encoded value that can be attached to the HTTP header.
1306
1307The goal of this library is to offer full NTLM support including signing and
1308sealing of messages as well as supporting MIC for message integrity and the
1309ability to customise and set limits on the messages sent. Please see Features
1310and Backlog for a list of what is and is not currently supported.")
1311 (license license:expat)))
1312
1284(define-public python-secretstorage 1313(define-public python-secretstorage
1285 (package 1314 (package
1286 (name "python-secretstorage") 1315 (name "python-secretstorage")