C | |
| channel [Sha1] |
If len is nonnegative, Sha1.channel ic len reads len characters from
channel ic and returns their digest, or raises End_of_file if end-of-file is
reached before len characters are read.
|
| channel [Sha512] |
If len is nonnegative, Sha512.channel ic len reads len characters from
channel ic and returns their digest, or raises End_of_file if end-of-file is
reached before len characters are read.
|
| channel [Sha256] |
If len is nonnegative, Sha256.channel ic len reads len characters from
channel ic and returns their digest, or raises End_of_file if end-of-file is
reached before len characters are read.
|
F | |
| file [Sha1] |
Return the digest of the file whose name is given.
|
| file [Sha512] |
Return the digest of the file whose name is given.
|
| file [Sha256] |
Return the digest of the file whose name is given.
|
| file_fast [Sha1] |
Return the digest of the file whose name is given using fast C function
|
| file_fast [Sha512] |
Return the digest of the file whose name is given using fast C function
|
| file_fast [Sha256] |
Return the digest of the file whose name is given using fast C function
|
I | |
| input [Sha1] |
Read a digest from the given input channel.
|
| input [Sha512] |
Read a digest from the given input channel.
|
| input [Sha256] |
Read a digest from the given input channel.
|
O | |
| output [Sha1] |
Write a digest on the given output channel.
|
| output [Sha512] |
Write a digest on the given output channel.
|
| output [Sha256] |
Write a digest on the given output channel.
|
S | |
| string [Sha1] |
Return the digest of the given string.
|
| string [Sha512] |
Return the digest of the given string.
|
| string [Sha256] |
Return the digest of the given string.
|
| substring [Sha1] |
Sha1.substring s ofs len returns the digest of the substring of s starting
at character number ofs and containing len characters.
|
| substring [Sha512] |
Sha512.substring s ofs len returns the digest of the substring of s starting
at character number ofs and containing len characters.
|
| substring [Sha256] |
Sha256.substring s ofs len returns the digest of the substring of s starting
at character number ofs and containing len characters.
|
T | |
| to_hex [Sha1] |
return a printable hexadecimal representation of the given digest
|
| to_hex [Sha512] |
return a printable hexadecimal representation of the given digest
|
| to_hex [Sha256] |
return a printable hexadecimal representation of the given digest
|