Struct HashingContext
Context to compute cryptographic hashes over multiple iterations.
struct HashingContext
;
The HashingContext class provides an interface for computing cryptographic hashes over multiple iterations. This is useful for example when computing hashes of big files (so you don't have to load them all in memory), network streams, and data streams in general (so you don't have to hold buffers).
The hashtype
enum shows the supported hashing algorithms.
const CHUNK_SIZE = 1024
func hash_file(path): var ctx = HashingContext.new() var file = File.new() # Start a SHA-256 context. ctx.start(HashingContext.HASH_SHA256) # Check that file exists. if not file.file_exists(path): return # Open the file to hash. file.open(path, File.READ) # Update the context after reading each chunk. while not file.eof_reached(): ctx.update(file.get_buffer(CHUNK_SIZE)) # Get the computed hash. var res = ctx.finish() # Print the result as hex string and array. printt(res.hex_encode(), Array(res))
Note: Not available in HTML5 exports.
Methods
Name | Description |
---|---|
finish
|
Closes the current context, and return the computed hash. |
start
|
Starts a new hash computation of the given type (e.g. constant HASH_SHA256 to start computation of a SHA-256).
|
update
|
Updates the computation with the given chunk of data.
|
Enums
Name | Description |
---|---|
Constants
|
|
HashType
|