package core:crypto/ripemd
Index
Procedures (32)
- block
- final
- hash_bytes_128
- hash_bytes_160
- hash_bytes_256
- hash_bytes_320
- hash_bytes_to_buffer_128
- hash_bytes_to_buffer_160
- hash_bytes_to_buffer_256
- hash_bytes_to_buffer_320
- hash_file_128
- hash_file_160
- hash_file_256
- hash_file_320
- hash_stream_128
- hash_stream_160
- hash_stream_256
- hash_stream_320
- hash_string_128
- hash_string_160
- hash_string_256
- hash_string_320
- hash_string_to_buffer_128
- hash_string_to_buffer_160
- hash_string_to_buffer_256
- hash_string_to_buffer_320
- init
- ripemd_128_block
- ripemd_160_block
- ripemd_256_block
- ripemd_320_block
- update
Types
Constants
DIGEST_SIZE_128 ¶
DIGEST_SIZE_128 :: 16
DIGEST_SIZE_160 ¶
DIGEST_SIZE_160 :: 20
DIGEST_SIZE_256 ¶
DIGEST_SIZE_256 :: 32
DIGEST_SIZE_320 ¶
DIGEST_SIZE_320 :: 40
RIPEMD_128_BLOCK_SIZE ¶
RIPEMD_128_BLOCK_SIZE :: 64
RIPEMD_128_SIZE ¶
RIPEMD_128_SIZE :: 16
RIPEMD_160_BLOCK_SIZE ¶
RIPEMD_160_BLOCK_SIZE :: 64
RIPEMD_160_SIZE ¶
RIPEMD_160_SIZE :: 20
RIPEMD_256_BLOCK_SIZE ¶
RIPEMD_256_BLOCK_SIZE :: 64
RIPEMD_256_SIZE ¶
RIPEMD_256_SIZE :: 32
RIPEMD_320_BLOCK_SIZE ¶
RIPEMD_320_BLOCK_SIZE :: 64
RIPEMD_320_SIZE ¶
RIPEMD_320_SIZE :: 40
Variables
RIPEMD_128_N0 ¶
RIPEMD_128_N0: [64]uint = …
RIPEMD_128_N1 ¶
RIPEMD_128_N1: [64]uint = …
RIPEMD_128_R0 ¶
RIPEMD_128_R0: [64]uint = …
RIPEMD_128_R1 ¶
RIPEMD_128_R1: [64]uint = …
RIPEMD_160_N0 ¶
RIPEMD_160_N0: [80]uint = …
RIPEMD_160_N1 ¶
RIPEMD_160_N1: [80]uint = …
RIPEMD_160_R0 ¶
RIPEMD_160_R0: [80]uint = …
RIPEMD_160_R1 ¶
RIPEMD_160_R1: [80]uint = …
Procedures
hash_bytes_128 ¶
hash_bytes_128 will hash the given input and return the computed hash
hash_bytes_160 ¶
hash_bytes_160 will hash the given input and return the computed hash
hash_bytes_256 ¶
hash_bytes_256 will hash the given input and return the computed hash
hash_bytes_320 ¶
hash_bytes_320 will hash the given input and return the computed hash
hash_bytes_to_buffer_128 ¶
hash_bytes_to_buffer_128 :: proc(data, hash: []u8) {…}
hash_bytes_to_buffer_128 will hash the given input and write the computed hash into the second parameter. It requires that the destination buffer is at least as big as the digest size
hash_bytes_to_buffer_160 ¶
hash_bytes_to_buffer_160 :: proc(data, hash: []u8) {…}
hash_bytes_to_buffer_160 will hash the given input and write the computed hash into the second parameter. It requires that the destination buffer is at least as big as the digest size
hash_bytes_to_buffer_256 ¶
hash_bytes_to_buffer_256 :: proc(data, hash: []u8) {…}
hash_bytes_to_buffer_256 will hash the given input and write the computed hash into the second parameter. It requires that the destination buffer is at least as big as the digest size
hash_bytes_to_buffer_320 ¶
hash_bytes_to_buffer_320 :: proc(data, hash: []u8) {…}
hash_bytes_to_buffer_320 will hash the given input and write the computed hash into the second parameter. It requires that the destination buffer is at least as big as the digest size
hash_file_128 ¶
hash_file_128 will read the file provided by the given handle and compute a hash
hash_file_160 ¶
hash_file_160 will read the file provided by the given handle and compute a hash
hash_file_256 ¶
hash_file_256 will read the file provided by the given handle and compute a hash
hash_file_320 ¶
hash_file_320 will read the file provided by the given handle and compute a hash
hash_stream_128 ¶
hash_stream_128 will read the stream in chunks and compute a hash from its contents
hash_stream_160 ¶
hash_stream_160 will read the stream in chunks and compute a hash from its contents
hash_stream_256 ¶
hash_stream_256 will read the stream in chunks and compute a hash from its contents
hash_stream_320 ¶
hash_stream_320 will read the stream in chunks and compute a hash from its contents
hash_string_128 ¶
hash_string_128 will hash the given input and return the computed hash
hash_string_160 ¶
hash_string_160 will hash the given input and return the computed hash
hash_string_256 ¶
hash_string_256 will hash the given input and return the computed hash
hash_string_320 ¶
hash_string_320 will hash the given input and return the computed hash
hash_string_to_buffer_128 ¶
hash_string_to_buffer_128 will hash the given input and assign the computed hash to the second parameter. It requires that the destination buffer is at least as big as the digest size
hash_string_to_buffer_160 ¶
hash_string_to_buffer_160 will hash the given input and assign the computed hash to the second parameter. It requires that the destination buffer is at least as big as the digest size
hash_string_to_buffer_256 ¶
hash_string_to_buffer_256 will hash the given input and assign the computed hash to the second parameter. It requires that the destination buffer is at least as big as the digest size
hash_string_to_buffer_320 ¶
hash_string_to_buffer_320 will hash the given input and assign the computed hash to the second parameter. It requires that the destination buffer is at least as big as the digest size
Procedure Groups
hash_128 ¶
hash_128 :: proc{ hash_stream_128, hash_file_128, hash_bytes_128, hash_string_128, hash_bytes_to_buffer_128, hash_string_to_buffer_128, }
hash_160 ¶
hash_160 :: proc{ hash_stream_160, hash_file_160, hash_bytes_160, hash_string_160, hash_bytes_to_buffer_160, hash_string_to_buffer_160, }
hash_256 ¶
hash_256 :: proc{ hash_stream_256, hash_file_256, hash_bytes_256, hash_string_256, hash_bytes_to_buffer_256, hash_string_to_buffer_256, }
hash_320 ¶
hash_320 :: proc{ hash_stream_320, hash_file_320, hash_bytes_320, hash_string_320, hash_bytes_to_buffer_320, hash_string_to_buffer_320, }
Source Files
Generation Information
Generated with odin version dev-2023-10 (vendor "odin") Windows_amd64 @ 2023-10-03 21:09:46.453731800 +0000 UTC