mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-17 08:27:47 -05:00
gnu: rust-eax-0.5: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-eax-0.5): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: I69d09b91a9e83e9a4bd32a54f95af3fb1f213510
This commit is contained in:
parent
077c0eb2ca
commit
949963ad58
2 changed files with 33 additions and 33 deletions
|
@ -1662,6 +1662,39 @@ (define-public rust-digest-0.6
|
||||||
functions.")
|
functions.")
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define-public rust-eax-0.5
|
||||||
|
(package
|
||||||
|
(name "rust-eax")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "eax" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0a5cpzk577f1lw3wkk20iqvavnbdr5yzjrcglvbvk0ivj2yzlm4r"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs
|
||||||
|
(("rust-aead" ,rust-aead-0.5)
|
||||||
|
("rust-cipher" ,rust-cipher-0.4)
|
||||||
|
("rust-cmac" ,rust-cmac-0.7)
|
||||||
|
("rust-ctr" ,rust-ctr-0.9)
|
||||||
|
("rust-subtle" ,rust-subtle-2))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-aead" ,rust-aead-0.5)
|
||||||
|
("rust-aes" ,rust-aes-0.8))))
|
||||||
|
(home-page "https://github.com/RustCrypto/AEADs")
|
||||||
|
(synopsis "Pure Rust implementation of the EAX Authenticated Encryption with
|
||||||
|
Associated Data (AEAD)")
|
||||||
|
(description
|
||||||
|
"Pure Rust implementation of the EAX Authenticated Encryption with Associated
|
||||||
|
Data (AEAD) Cipher with optional architecture-specific hardware acceleration
|
||||||
|
This scheme is only based on a block cipher. It uses counter mode (CTR) for
|
||||||
|
encryption and CBC mode for generating a OMAC/CMAC/CBCMAC (all names for the
|
||||||
|
same thing).")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-elliptic-curve-0.13
|
(define-public rust-elliptic-curve-0.13
|
||||||
(package
|
(package
|
||||||
(name "rust-elliptic-curve")
|
(name "rust-elliptic-curve")
|
||||||
|
|
|
@ -20805,39 +20805,6 @@ (define-public rust-easycurses-0.12
|
||||||
easy.")
|
easy.")
|
||||||
(license (list license:unlicense license:zlib))))
|
(license (list license:unlicense license:zlib))))
|
||||||
|
|
||||||
(define-public rust-eax-0.5
|
|
||||||
(package
|
|
||||||
(name "rust-eax")
|
|
||||||
(version "0.5.0")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "eax" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0a5cpzk577f1lw3wkk20iqvavnbdr5yzjrcglvbvk0ivj2yzlm4r"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-inputs
|
|
||||||
(("rust-aead" ,rust-aead-0.5)
|
|
||||||
("rust-cipher" ,rust-cipher-0.4)
|
|
||||||
("rust-cmac" ,rust-cmac-0.7)
|
|
||||||
("rust-ctr" ,rust-ctr-0.9)
|
|
||||||
("rust-subtle" ,rust-subtle-2))
|
|
||||||
#:cargo-development-inputs
|
|
||||||
(("rust-aead" ,rust-aead-0.5)
|
|
||||||
("rust-aes" ,rust-aes-0.8))))
|
|
||||||
(home-page "https://github.com/RustCrypto/AEADs")
|
|
||||||
(synopsis "Pure Rust implementation of the EAX Authenticated Encryption with
|
|
||||||
Associated Data (AEAD)")
|
|
||||||
(description
|
|
||||||
"Pure Rust implementation of the EAX Authenticated Encryption with Associated
|
|
||||||
Data (AEAD) Cipher with optional architecture-specific hardware acceleration
|
|
||||||
This scheme is only based on a block cipher. It uses counter mode (CTR) for
|
|
||||||
encryption and CBC mode for generating a OMAC/CMAC/CBCMAC (all names for the
|
|
||||||
same thing).")
|
|
||||||
(license (list license:asl2.0 license:expat))))
|
|
||||||
|
|
||||||
(define-public rust-ecb-0.1
|
(define-public rust-ecb-0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-ecb")
|
(name "rust-ecb")
|
||||||
|
|
Loading…
Reference in a new issue