123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- package blake2s
- /*
- Copyright 2021 zhibog
- Made available under the BSD-3 license.
- List of contributors:
- zhibog, dotbmp: Initial implementation.
- Jeroen van Rijn: Context design to be able to change from Odin implementation to bindings.
- Interface for the BLAKE2S hashing algorithm.
- BLAKE2B and BLAKE2B share the implementation in the _blake2 package.
- */
- import "core:os"
- import "core:io"
- import "../_ctx"
- import "../_blake2"
- /*
- Context initialization and switching between the Odin implementation and the bindings
- */
- USE_BOTAN_LIB :: bool(#config(USE_BOTAN_LIB, false))
- @(private)
- _init_vtable :: #force_inline proc() -> ^_ctx.Hash_Context {
- ctx := _ctx._init_vtable()
- when USE_BOTAN_LIB {
- use_botan()
- } else {
- _assign_hash_vtable(ctx)
- }
- return ctx
- }
- @(private)
- _assign_hash_vtable :: #force_inline proc(ctx: ^_ctx.Hash_Context) {
- ctx.hash_bytes_32 = hash_bytes_odin
- ctx.hash_file_32 = hash_file_odin
- ctx.hash_stream_32 = hash_stream_odin
- ctx.init = _init_odin
- ctx.update = _update_odin
- ctx.final = _final_odin
- }
- _hash_impl := _init_vtable()
- // use_botan does nothing, since Blake2s is not available in Botan
- @(warning="Blake2s is not provided by the Botan API. Odin implementation will be used")
- use_botan :: #force_inline proc() {
- use_odin()
- }
- // use_odin assigns the internal vtable of the hash context to use the Odin implementation
- use_odin :: #force_inline proc() {
- _assign_hash_vtable(_hash_impl)
- }
- /*
- High level API
- */
- // hash_string will hash the given input and return the
- // computed hash
- hash_string :: proc(data: string) -> [32]byte {
- return hash_bytes(transmute([]byte)(data))
- }
- // hash_bytes will hash the given input and return the
- // computed hash
- hash_bytes :: proc(data: []byte) -> [32]byte {
- _create_blake2s_ctx()
- return _hash_impl->hash_bytes_32(data)
- }
- // hash_stream will read the stream in chunks and compute a
- // hash from its contents
- hash_stream :: proc(s: io.Stream) -> ([32]byte, bool) {
- _create_blake2s_ctx()
- return _hash_impl->hash_stream_32(s)
- }
- // hash_file will read the file provided by the given handle
- // and compute a hash
- hash_file :: proc(hd: os.Handle, load_at_once := false) -> ([32]byte, bool) {
- _create_blake2s_ctx()
- return _hash_impl->hash_file_32(hd, load_at_once)
- }
- hash :: proc {
- hash_stream,
- hash_file,
- hash_bytes,
- hash_string,
- }
- /*
- Low level API
- */
- init :: proc(ctx: ^_ctx.Hash_Context) {
- _hash_impl->init()
- }
- update :: proc(ctx: ^_ctx.Hash_Context, data: []byte) {
- _hash_impl->update(data)
- }
- final :: proc(ctx: ^_ctx.Hash_Context, hash: []byte) {
- _hash_impl->final(hash)
- }
- hash_bytes_odin :: #force_inline proc(ctx: ^_ctx.Hash_Context, data: []byte) -> [32]byte {
- hash: [32]byte
- if c, ok := ctx.internal_ctx.(_blake2.Blake2s_Context); ok {
- _blake2.init_odin(&c)
- _blake2.update_odin(&c, data)
- _blake2.blake2s_final_odin(&c, hash[:])
- }
- return hash
- }
- hash_stream_odin :: #force_inline proc(ctx: ^_ctx.Hash_Context, fs: io.Stream) -> ([32]byte, bool) {
- hash: [32]byte
- if c, ok := ctx.internal_ctx.(_blake2.Blake2s_Context); ok {
- _blake2.init_odin(&c)
- buf := make([]byte, 512)
- defer delete(buf)
- read := 1
- for read > 0 {
- read, _ = fs->impl_read(buf)
- if read > 0 {
- _blake2.update_odin(&c, buf[:read])
- }
- }
- _blake2.blake2s_final_odin(&c, hash[:])
- return hash, true
- } else {
- return hash, false
- }
- }
- hash_file_odin :: #force_inline proc(ctx: ^_ctx.Hash_Context, hd: os.Handle, load_at_once := false) -> ([32]byte, bool) {
- if !load_at_once {
- return hash_stream_odin(ctx, os.stream_from_handle(hd))
- } else {
- if buf, ok := os.read_entire_file(hd); ok {
- return hash_bytes_odin(ctx, buf[:]), ok
- }
- }
- return [32]byte{}, false
- }
- @(private)
- _create_blake2s_ctx :: #force_inline proc() {
- ctx: _blake2.Blake2s_Context
- cfg: _blake2.Blake2_Config
- cfg.size = _blake2.BLAKE2S_SIZE
- ctx.cfg = cfg
- _hash_impl.internal_ctx = ctx
- _hash_impl.hash_size = ._32
- }
- @(private)
- _init_odin :: #force_inline proc(ctx: ^_ctx.Hash_Context) {
- _create_blake2s_ctx()
- if c, ok := ctx.internal_ctx.(_blake2.Blake2s_Context); ok {
- _blake2.init_odin(&c)
- }
- }
- @(private)
- _update_odin :: #force_inline proc(ctx: ^_ctx.Hash_Context, data: []byte) {
- if c, ok := ctx.internal_ctx.(_blake2.Blake2s_Context); ok {
- _blake2.update_odin(&c, data)
- }
- }
- @(private)
- _final_odin :: #force_inline proc(ctx: ^_ctx.Hash_Context, hash: []byte) {
- if c, ok := ctx.internal_ctx.(_blake2.Blake2s_Context); ok {
- _blake2.blake2s_final_odin(&c, hash)
- }
- }
|