Remove the read_entire_file from the crypto utils and now use the one within core:os

This commit is contained in:
zhibog
2021-10-16 18:46:18 +02:00
parent c632125d82
commit b7a0627d09
24 changed files with 64 additions and 104 deletions
+1 -2
View File
@@ -18,7 +18,6 @@ import "core:io"
import "../botan"
import "../_ctx"
import "../_blake2"
import "../util"
/*
Context initialization and switching between the Odin implementation and the bindings
@@ -147,7 +146,7 @@ hash_file_odin :: #force_inline proc(ctx: ^_ctx.Hash_Context, hd: os.Handle, loa
if !load_at_once {
return hash_stream_odin(ctx, os.stream_from_handle(hd))
} else {
if buf, ok := util.read_entire_file(hd); ok {
if buf, ok := os.read_entire_file(hd); ok {
return hash_bytes_odin(ctx, buf[:]), ok
}
}