me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-constant-time-eq-0.2.

* gnu/packages/crates-io.scm (rust-constant-time-eq-0.2): New variable.
(rust-constant-time-eq-0.1): Inherit from rust-constant-time-eq-0.2.
Efraim Flashner 2023-05-11 16:42:26 +03:00
parent d44bfd05de
commit 40259184cd
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 6 deletions

View File

@ -13537,8 +13537,31 @@ generation.")
"This package provides a sha1 implementation for use in const contexts.")
(license (list license:asl2.0 license:expat))))
(define-public rust-constant-time-eq-0.2
(package
(name "rust-constant-time-eq")
(version "0.2.5")
(source (origin
(method url-fetch)
(uri (crate-uri "constant-time-eq" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0sy7bs12dfa2d5hw7759b0mvjqcs85giajg4qyg39xq8a1s8wh8k"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.4))))
(home-page "https://github.com/cesarb/constant_time_eq")
(synopsis
"Compares two equal-sized byte strings in constant time")
(description
"This package compares two equal-sized byte strings in constant time.
It is inspired by the Linux kernel's @code{crypto_memneq}.")
(license (list license:cc0 license:expat-0 license:asl2.0))))
(define-public rust-constant-time-eq-0.1
(package
(inherit rust-constant-time-eq-0.2)
(name "rust-constant-time-eq")
(version "0.1.5")
(source
@ -13549,13 +13572,7 @@ generation.")
(sha256
(base32
"1g3vp04qzmk6cpzrd19yci6a95m7ap6wy7wkwgiy2pjklklrfl14"))))
(build-system cargo-build-system)
(home-page "https://github.com/cesarb/constant_time_eq")
(synopsis
"Compares two equal-sized byte strings in constant time")
(description
"This package compares two equal-sized byte strings in constant time.
It is inspired by the Linux kernel's @code{crypto_memneq}.")
(license license:cc0)))
(define-public rust-content-inspector-0.2