File tree 3 files changed +6
-6
lines changed 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ blake2 = "0.9"
75
75
```
76
76
77
77
Note that crates in this repository have an enabled by default ` std ` feature.
78
- So if you plan to use the crate in ` no_std ` enviroments , don't forget to disable it:
78
+ So if you plan to use the crate in ` no_std ` environments , don't forget to disable it:
79
79
80
80
``` toml
81
81
[dependencies ]
@@ -116,7 +116,7 @@ let hash = Blake2b::new()
116
116
println! (" Result: {:x}" , hash );
117
117
```
118
118
119
- If the whole message is available you also can use convinience ` digest ` method:
119
+ If the whole message is available you also can use convenience ` digest ` method:
120
120
121
121
``` Rust
122
122
use blake2 :: {Blake2b , Digest };
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ There are 5 standard algorithms specified in the Shabal standard:
20
20
* ` Shabal384 ` , which is the ` Shabal ` algorithm with the result truncated to 384 bits.
21
21
* ` Shabal512 ` , which is the ` Shabal ` algorithm with the result not truncated.
22
22
23
- There is a single Shabal algorithm. All variants have different intialisation and apart
24
- Shabal512 truncate the result.
23
+ There is a single Shabal algorithm. All variants have different initialisation and apart
24
+ from Shabal512 all truncate the result.
25
25
26
26
## Usage
27
27
Original file line number Diff line number Diff line change 8
8
//! * `Shabal384`, which is the `Shabal` algorithm with the result truncated to 384 bits.
9
9
//! * `Shabal512`, which is the `Shabal` algorithm with the result not truncated.
10
10
//!
11
- //! There is a single Shabal algorithm. All variants have different intialisation and apart
12
- //! Shabal512 truncate the result.
11
+ //! There is a single Shabal algorithm. All variants have different initialisation and apart
12
+ //! from Shabal512 all truncate the result.
13
13
//!
14
14
//! # Usage
15
15
//!
You can’t perform that action at this time.
0 commit comments