[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#71938] [PATCH v3 01/25] gnu: Add ghc-crypton.
From: |
Romain GARBAGE |
Subject: |
[bug#71938] [PATCH v3 01/25] gnu: Add ghc-crypton. |
Date: |
Mon, 22 Jul 2024 13:27:58 +0200 |
* gnu/packages/haskell-crypto.scm (ghc-crypton): New variable.
Change-Id: I91902a8dbc0df2d19729933e6cd096810fdc1059
---
gnu/packages/haskell-crypto.scm | 40 +++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/haskell-crypto.scm b/gnu/packages/haskell-crypto.scm
index 83ba8bc10b..12ffd10743 100644
--- a/gnu/packages/haskell-crypto.scm
+++ b/gnu/packages/haskell-crypto.scm
@@ -612,6 +612,46 @@ (define-public ghc-crypto-random
abstraction for CPRNGs.")
(license license:bsd-3)))
+(define-public ghc-crypton
+ (package
+ (name "ghc-crypton")
+ (version "0.34")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (hackage-uri "crypton" version))
+ (sha256
+ (base32 "1mhypjhzn95in853bp7ary0a2xc6lsji6j8hrrgn2mfa4ilq8i24"))))
+ (build-system haskell-build-system)
+ (properties '((upstream-name . "crypton")))
+ (inputs (list ghc-memory ghc-basement))
+ (native-inputs (list ghc-tasty ghc-tasty-quickcheck ghc-tasty-hunit
+ ghc-tasty-kat))
+ (home-page "https://github.com/kazu-yamamoto/crypton")
+ (synopsis "Cryptography Primitives sink")
+ (description
+ "This package provides a repository of cryptographic primitives.
+@itemize @bullet
+
+@item Symmetric ciphers: AES, DES, 3DES, CAST5, Blowfish, Twofish, Camellia,
RC4,
+Salsa, XSalsa, ChaCha.
+
+@item Hash: SHA1, SHA2, SHA3, SHAKE, MD2, MD4, MD5, Keccak, Skein, Ripemd,
Tiger,
+Whirlpool, Blake2.
+
+@item MAC: HMAC, KMAC, Poly1305
+
+@item Asymmetric crypto: DSA, RSA, DH, ECDH, ECDSA, ECC, Curve25519, Curve448,
+Ed25519, Ed448
+
+@item Key Derivation Function: PBKDF2, Scrypt, HKDF, Argon2, BCrypt,
BCryptPBKDF
+
+@item Cryptographic Random generation: System Entropy, Deterministic Random
Generator
+
+@item Data related: Anti-Forensic Information Splitter (AFIS)
+@end itemize")
+ (license license:bsd-3)))
+
(define-public ghc-cprng-aes
(package
(name "ghc-cprng-aes")
--
2.45.1
- [bug#44518] [PATCH v3 00/25] Add matterhorn package., Romain GARBAGE, 2024/07/22
- [bug#44518] [PATCH v3 03/25] gnu: Add ghc-crypton-x509-store., Romain GARBAGE, 2024/07/22
- [bug#71938] [PATCH v3 01/25] gnu: Add ghc-crypton.,
Romain GARBAGE <=
- [bug#44518] [PATCH v3 05/25] gnu: Add ghc-crypton-x509-validation., Romain GARBAGE, 2024/07/22
- [bug#71938] [PATCH v3 02/25] gnu: Add ghc-crypton-x509., Romain GARBAGE, 2024/07/22
- [bug#71938] [PATCH v3 04/25] gnu: Add ghc-crypton-x509-system., Romain GARBAGE, 2024/07/22
- [bug#44518] [PATCH v3 06/25] gnu: Add ghc-tls-1.9., Romain GARBAGE, 2024/07/22
- [bug#44518] [PATCH v3 07/25] gnu: Add ghc-crypton-connection., Romain GARBAGE, 2024/07/22
- [bug#71938] [PATCH v3 08/25] gnu: Add ghc-mattermost-api., Romain GARBAGE, 2024/07/22
- [bug#71938] [PATCH v3 10/25] gnu: Add ghc-modern-uri., Romain GARBAGE, 2024/07/22
- [bug#44518] [PATCH v3 09/25] gnu: Add ghc-mattermost-api-qc., Romain GARBAGE, 2024/07/22
- [bug#44518] [PATCH v3 11/25] gnu: Add ghc-aspell-pipe., Romain GARBAGE, 2024/07/22
- [bug#44518] [PATCH v3 17/25] gnu: Add ghc-unique., Romain GARBAGE, 2024/07/22