Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
sha1 - Rust
[go: Go Back, main page]

Crate sha1 [] [src]

A minimal implementation of SHA1 for rust.

Example:

extern crate sha1;

let mut m = sha1::Sha1::new();
m.update(b"Hello World!");
assert_eq!(m.digest().to_string(),
           "2ef7bde608ce5404e97d5f042f95f89f1c232871");

Structs

Digest

Digest generated from a Sha1 instance.

DigestParseError

Indicates that a digest couldn't be parsed.

Sha1

Represents a Sha1 hash object in memory.

Constants

DIGEST_LENGTH

The length of a SHA1 digest in bytes