Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
ac1747e4
Commit
ac1747e4
authored
6 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'catalyst-github/bug26415_034' into maint-0.3.4
parents
e309aa4c
bfd36177
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changes/bug26415
+3
-0
3 additions, 0 deletions
changes/bug26415
src/rust/crypto/digests/sha2.rs
+12
-12
12 additions, 12 deletions
src/rust/crypto/digests/sha2.rs
src/rust/crypto/lib.rs
+7
-7
7 additions, 7 deletions
src/rust/crypto/lib.rs
with
22 additions
and
19 deletions
changes/bug26415
0 → 100644
+
3
−
0
View file @
ac1747e4
o Minor bugfixes (testing):
- Fix compilation of the doctests in the Rust crypto crate. Fixes
bug 26415; bugfix on 0.3.4.1-alpha.
This diff is collapsed.
Click to expand it.
src/rust/crypto/digests/sha2.rs
+
12
−
12
View file @
ac1747e4
...
...
@@ -44,9 +44,9 @@ pub struct Sha256 {
/// # Examples
///
/// ```
/// use crypto::digest::
Sha256
;
/// use crypto::digest
s
::
sha2::{Sha256, Digest}
;
///
/// let hasher: Sha256 = Sha256::default();
/// let
mut
hasher: Sha256 = Sha256::default();
/// ```
///
/// # Returns
...
...
@@ -67,12 +67,12 @@ impl BlockInput for Sha256 {
/// # Examples
///
/// ```
/// use crypto::digest::
Sha256
;
/// use crypto::digest
s
::
sha2::{Sha256, Digest}
;
///
/// let hasher: Sha256 = Sha256::default();
/// let
mut
hasher: Sha256 = Sha256::default();
///
/// hasher.
process
(b"foo");
/// hasher.
process
(b"bar");
/// hasher.
input
(b"foo");
/// hasher.
input
(b"bar");
/// ```
impl
Input
for
Sha256
{
fn
process
(
&
mut
self
,
msg
:
&
[
u8
])
{
...
...
@@ -111,9 +111,9 @@ pub struct Sha512 {
/// # Examples
///
/// ```
/// use crypto::digest::
Sha512
;
/// use crypto::digest
s
::
sha2::{Sha512, Digest}
;
///
/// let hasher: Sha
256
= Sha512::default();
/// let
mut
hasher: Sha
512
= Sha512::default();
/// ```
///
/// # Returns
...
...
@@ -134,12 +134,12 @@ impl BlockInput for Sha512 {
/// # Examples
///
/// ```
/// use crypto::digest::
Sha512
;
/// use crypto::digest
s
::
sha2::{Sha512, Digest}
;
///
/// let hasher: Sha512 = Sha512::default();
/// let
mut
hasher: Sha512 = Sha512::default();
///
/// hasher.
process
(b"foo");
/// hasher.
process
(b"bar");
/// hasher.
input
(b"foo");
/// hasher.
input
(b"bar");
/// ```
impl
Input
for
Sha512
{
fn
process
(
&
mut
self
,
msg
:
&
[
u8
])
{
...
...
This diff is collapsed.
Click to expand it.
src/rust/crypto/lib.rs
+
7
−
7
View file @
ac1747e4
...
...
@@ -10,18 +10,18 @@
//! and extendable output functions.
//!
//! ```
//! use crypto::digests::sha2
56::Sha256
;
//! use crypto::digests::sha2
::*
;
//!
//! let hasher: Sha256 = Sha256::default();
//! let
mut
hasher: Sha256 = Sha256::default();
//! let mut result: [u8; 32] = [0u8; 32];
//!
//! hasher.input("foo");
//! hasher.input("bar");
//! hasher.input("baz");
//! hasher.input(
b
"foo");
//! hasher.input(
b
"bar");
//! hasher.input(
b
"baz");
//!
//! result.copy_from_slice(hasher.result().as_
bytes
());
//! result.copy_from_slice(hasher.result().as_
slice
());
//!
//! assert!(result ==
"XXX"
);
//! assert!(result ==
[b'X'; DIGEST256_LEN]
);
//! ```
#[deny(missing_docs)]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment