Docs.rs
sha256-1.6.0
sha256 1.6.0
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
baoyachi
Dependencies
async-trait ^0.1.68
normal
bytes ^1.4.0
normal
hex ^0.4.2
normal
openssl ^0.10.54
normal
optional
sha2 ^0.10.6
normal
tokio ^1.28.2
normal
optional
tokio ^1.28.2
dev
tokio-test ^0.4.2
dev
Versions
30%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
Rust
About docs.rs
Privacy policy
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
sha256
1.6.0
Sha256
Digest
Required Methods
digest
Implementations on Foreign Types
&String
&Vec<u8>
&[u8; N]
&[u8]
&mut &str
&str
String
Vec<u8>
char
Implementors
In crate sha256
sha256
Trait
Sha256Digest
Copy item path
Source
pub trait Sha256Digest { // Required method fn
digest
(self) ->
String
; }
Required Methods
§
Source
fn
digest
(self) ->
String
Implementations on Foreign Types
§
Source
§
impl
Sha256Digest
for &
str
Source
§
fn
digest
(self) ->
String
Source
§
impl
Sha256Digest
for &
String
Source
§
fn
digest
(self) ->
String
Source
§
impl
Sha256Digest
for &
Vec
<
u8
>
Source
§
fn
digest
(self) ->
String
Source
§
impl
Sha256Digest
for &[
u8
]
Source
§
fn
digest
(self) ->
String
Source
§
impl
Sha256Digest
for &mut &
str
Source
§
fn
digest
(self) ->
String
Source
§
impl
Sha256Digest
for
char
Source
§
fn
digest
(self) ->
String
Source
§
impl
Sha256Digest
for
String
Source
§
fn
digest
(self) ->
String
Source
§
impl
Sha256Digest
for
Vec
<
u8
>
Source
§
fn
digest
(self) ->
String
Source
§
impl<const N:
usize
>
Sha256Digest
for &[
u8
;
N
]
Source
§
fn
digest
(self) ->
String
Implementors
§