gnu: Add rust-aes-soft-0.6.
* gnu/packages/crates-io.scm (rust-aes-soft-0.6): New variable. (rust-aes-soft-0.4): Inherit from above. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>master
parent
e6c24b123f
commit
4b481835f2
|
@ -1274,8 +1274,37 @@ acceleration.")
|
||||||
("rust-subtle" ,rust-subtle-2)
|
("rust-subtle" ,rust-subtle-2)
|
||||||
("rust-zeroize" ,rust-zeroize-1))))))
|
("rust-zeroize" ,rust-zeroize-1))))))
|
||||||
|
|
||||||
|
(define-public rust-aes-soft-0.6
|
||||||
|
(package
|
||||||
|
(name "rust-aes-soft")
|
||||||
|
(version "0.6.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "aes-soft" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0wj0fi2pvmlw09yvb1aqf0mfkzrfxmjsf90finijh255ir4wf55y"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-block-cipher" ,rust-block-cipher-0.7)
|
||||||
|
("rust-byteorder" ,rust-byteorder-1)
|
||||||
|
("rust-opaque-debug" ,rust-opaque-debug-0.2))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-block-cipher" ,rust-block-cipher-0.7))))
|
||||||
|
(home-page "https://github.com/RustCrypto/block-ciphers")
|
||||||
|
(synopsis "Bit-sliced implementation of AES (Rijndael) block ciphers")
|
||||||
|
(description "This package provides a bit-sliced implementation of
|
||||||
|
AES (Rijndael) block ciphers.
|
||||||
|
|
||||||
|
This package is deprecated and was replaced by the @code{aes} crate.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-aes-soft-0.4
|
(define-public rust-aes-soft-0.4
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-aes-soft-0.6)
|
||||||
(name "rust-aes-soft")
|
(name "rust-aes-soft")
|
||||||
(version "0.4.0")
|
(version "0.4.0")
|
||||||
(source
|
(source
|
||||||
|
@ -1286,19 +1315,13 @@ acceleration.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"19szsg0qqxq42k7bj5p3svb147n8wxy9a20n4g7mcl2fwrz689a9"))))
|
"19szsg0qqxq42k7bj5p3svb147n8wxy9a20n4g7mcl2fwrz689a9"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-block-cipher" ,rust-block-cipher-0.7)
|
(("rust-block-cipher" ,rust-block-cipher-0.7)
|
||||||
("rust-byteorder" ,rust-byteorder-1)
|
("rust-byteorder" ,rust-byteorder-1)
|
||||||
("rust-opaque-debug" ,rust-opaque-debug-0.2))
|
("rust-opaque-debug" ,rust-opaque-debug-0.2))
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-block-cipher" ,rust-block-cipher-0.7))))
|
(("rust-block-cipher" ,rust-block-cipher-0.7))))))
|
||||||
(home-page "https://github.com/RustCrypto/block-ciphers")
|
|
||||||
(synopsis "Bit-sliced implementation of AES (Rijndael) block ciphers")
|
|
||||||
(description "This package provides a bit-sliced implementation of
|
|
||||||
AES (Rijndael) block ciphers.")
|
|
||||||
(license (list license:expat license:asl2.0))))
|
|
||||||
|
|
||||||
(define-public rust-aes-soft-0.3
|
(define-public rust-aes-soft-0.3
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue