aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/crypto/README.md1
-rw-r--r--core/crypto/ripemd/ripemd.odin919
-rw-r--r--examples/all/all_main.odin2
-rw-r--r--examples/all/all_vendor.odin2
-rw-r--r--tests/core/crypto/test_core_crypto.odin85
-rw-r--r--tests/vendor/botan/test_vendor_botan.odin22
-rw-r--r--vendor/botan/README.md1
-rw-r--r--vendor/botan/bindings/botan.odin1
-rw-r--r--vendor/botan/ripemd/ripemd.odin121
9 files changed, 0 insertions, 1154 deletions
diff --git a/core/crypto/README.md b/core/crypto/README.md
index 973247f58..82db2775f 100644
--- a/core/crypto/README.md
+++ b/core/crypto/README.md
@@ -12,7 +12,6 @@ Please see the chart below for the options.
| [BLAKE2S](https://datatracker.ietf.org/doc/html/rfc7693) | ✔️ |
| [Keccak](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf) | ✔️ |
| [MD5](https://datatracker.ietf.org/doc/html/rfc1321) | ✔️ |
-| [RIPEMD](https://homes.esat.kuleuven.be/~bosselae/ripemd160.html) | ✔️ |
| [SHA-1](https://datatracker.ietf.org/doc/html/rfc3174) | ✔️ |
| [SHA-2](https://csrc.nist.gov/csrc/media/publications/fips/180/2/archive/2002-08-01/documents/fips180-2.pdf) | ✔️ |
| [SHA-3](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf) | ✔️ |
diff --git a/core/crypto/ripemd/ripemd.odin b/core/crypto/ripemd/ripemd.odin
deleted file mode 100644
index f9edb121b..000000000
--- a/core/crypto/ripemd/ripemd.odin
+++ /dev/null
@@ -1,919 +0,0 @@
-package ripemd
-
-/*
- Copyright 2021 zhibog
- Made available under the BSD-3 license.
-
- List of contributors:
- zhibog, dotbmp: Initial implementation.
-
- Implementation for the RIPEMD hashing algorithm as defined in <https://homes.esat.kuleuven.be/~bosselae/ripemd160.html>
-*/
-
-import "core:os"
-import "core:io"
-
-import "../util"
-
-/*
- High level API
-*/
-
-DIGEST_SIZE_128 :: 16
-DIGEST_SIZE_160 :: 20
-DIGEST_SIZE_256 :: 32
-DIGEST_SIZE_320 :: 40
-
-// hash_string_128 will hash the given input and return the
-// computed hash
-hash_string_128 :: proc(data: string) -> [DIGEST_SIZE_128]byte {
- return hash_bytes_128(transmute([]byte)(data))
-}
-
-// hash_bytes_128 will hash the given input and return the
-// computed hash
-hash_bytes_128 :: proc(data: []byte) -> [DIGEST_SIZE_128]byte {
- hash: [DIGEST_SIZE_128]byte
- ctx: Ripemd128_Context
- init(&ctx)
- update(&ctx, data)
- final(&ctx, hash[:])
- return hash
-}
-
-// 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_128 :: proc(data: string, hash: []byte) {
- hash_bytes_to_buffer_128(transmute([]byte)(data), hash)
-}
-
-// 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_128 :: proc(data, hash: []byte) {
- assert(len(hash) >= DIGEST_SIZE_128, "Size of destination buffer is smaller than the digest size")
- ctx: Ripemd128_Context
- init(&ctx)
- update(&ctx, data)
- final(&ctx, hash)
-}
-
-// hash_stream_128 will read the stream in chunks and compute a
-// hash from its contents
-hash_stream_128 :: proc(s: io.Stream) -> ([DIGEST_SIZE_128]byte, bool) {
- hash: [DIGEST_SIZE_128]byte
- ctx: Ripemd128_Context
- init(&ctx)
- buf := make([]byte, 512)
- defer delete(buf)
- read := 1
- for read > 0 {
- read, _ = io.read(s, buf)
- if read > 0 {
- update(&ctx, buf[:read])
- }
- }
- final(&ctx, hash[:])
- return hash, true
-}
-
-// hash_file_128 will read the file provided by the given handle
-// and compute a hash
-hash_file_128 :: proc(hd: os.Handle, load_at_once := false) -> ([DIGEST_SIZE_128]byte, bool) {
- if !load_at_once {
- return hash_stream_128(os.stream_from_handle(hd))
- } else {
- if buf, ok := os.read_entire_file(hd); ok {
- return hash_bytes_128(buf[:]), ok
- }
- }
- return [DIGEST_SIZE_128]byte{}, false
-}
-
-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_string_160 will hash the given input and return the
-// computed hash
-hash_string_160 :: proc(data: string) -> [DIGEST_SIZE_160]byte {
- return hash_bytes_160(transmute([]byte)(data))
-}
-
-// hash_bytes_160 will hash the given input and return the
-// computed hash
-hash_bytes_160 :: proc(data: []byte) -> [DIGEST_SIZE_160]byte {
- hash: [DIGEST_SIZE_160]byte
- ctx: Ripemd160_Context
- init(&ctx)
- update(&ctx, data)
- final(&ctx, hash[:])
- return hash
-}
-
-// 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_160 :: proc(data: string, hash: []byte) {
- hash_bytes_to_buffer_160(transmute([]byte)(data), hash)
-}
-
-// 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_160 :: proc(data, hash: []byte) {
- assert(len(hash) >= DIGEST_SIZE_160, "Size of destination buffer is smaller than the digest size")
- ctx: Ripemd160_Context
- init(&ctx)
- update(&ctx, data)
- final(&ctx, hash)
-}
-
-// hash_stream_160 will read the stream in chunks and compute a
-// hash from its contents
-hash_stream_160 :: proc(s: io.Stream) -> ([DIGEST_SIZE_160]byte, bool) {
- hash: [DIGEST_SIZE_160]byte
- ctx: Ripemd160_Context
- init(&ctx)
- buf := make([]byte, 512)
- defer delete(buf)
- read := 1
- for read > 0 {
- read, _ = io.read(s, buf)
- if read > 0 {
- update(&ctx, buf[:read])
- }
- }
- final(&ctx, hash[:])
- return hash, true
-}
-
-// hash_file_160 will read the file provided by the given handle
-// and compute a hash
-hash_file_160 :: proc(hd: os.Handle, load_at_once := false) -> ([DIGEST_SIZE_160]byte, bool) {
- if !load_at_once {
- return hash_stream_160(os.stream_from_handle(hd))
- } else {
- if buf, ok := os.read_entire_file(hd); ok {
- return hash_bytes_160(buf[:]), ok
- }
- }
- return [DIGEST_SIZE_160]byte{}, false
-}
-
-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_string_256 will hash the given input and return the
-// computed hash
-hash_string_256 :: proc(data: string) -> [DIGEST_SIZE_256]byte {
- return hash_bytes_256(transmute([]byte)(data))
-}
-
-// hash_bytes_256 will hash the given input and return the
-// computed hash
-hash_bytes_256 :: proc(data: []byte) -> [DIGEST_SIZE_256]byte {
- hash: [DIGEST_SIZE_256]byte
- ctx: Ripemd256_Context
- init(&ctx)
- update(&ctx, data)
- final(&ctx, hash[:])
- return hash
-}
-
-// 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_256 :: proc(data: string, hash: []byte) {
- hash_bytes_to_buffer_256(transmute([]byte)(data), hash)
-}
-
-// 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_256 :: proc(data, hash: []byte) {
- assert(len(hash) >= DIGEST_SIZE_256, "Size of destination buffer is smaller than the digest size")
- ctx: Ripemd256_Context
- init(&ctx)
- update(&ctx, data)
- final(&ctx, hash)
-}
-
-// hash_stream_256 will read the stream in chunks and compute a
-// hash from its contents
-hash_stream_256 :: proc(s: io.Stream) -> ([DIGEST_SIZE_256]byte, bool) {
- hash: [DIGEST_SIZE_256]byte
- ctx: Ripemd256_Context
- init(&ctx)
- buf := make([]byte, 512)
- defer delete(buf)
- read := 1
- for read > 0 {
- read, _ = io.read(s, buf)
- if read > 0 {
- update(&ctx, buf[:read])
- }
- }
- final(&ctx, hash[:])
- return hash, true
-}
-
-// hash_file_256 will read the file provided by the given handle
-// and compute a hash
-hash_file_256 :: proc(hd: os.Handle, load_at_once := false) -> ([DIGEST_SIZE_256]byte, bool) {
- if !load_at_once {
- return hash_stream_256(os.stream_from_handle(hd))
- } else {
- if buf, ok := os.read_entire_file(hd); ok {
- return hash_bytes_256(buf[:]), ok
- }
- }
- return [DIGEST_SIZE_256]byte{}, false
-}
-
-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_string_320 will hash the given input and return the
-// computed hash
-hash_string_320 :: proc(data: string) -> [DIGEST_SIZE_320]byte {
- return hash_bytes_320(transmute([]byte)(data))
-}
-
-// hash_bytes_320 will hash the given input and return the
-// computed hash
-hash_bytes_320 :: proc(data: []byte) -> [DIGEST_SIZE_320]byte {
- hash: [DIGEST_SIZE_320]byte
- ctx: Ripemd320_Context
- init(&ctx)
- update(&ctx, data)
- final(&ctx, hash[:])
- return hash
-}
-
-// 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
-hash_string_to_buffer_320 :: proc(data: string, hash: []byte) {
- hash_bytes_to_buffer_320(transmute([]byte)(data), hash)
-}
-
-// 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_bytes_to_buffer_320 :: proc(data, hash: []byte) {
- assert(len(hash) >= DIGEST_SIZE_320, "Size of destination buffer is smaller than the digest size")
- ctx: Ripemd320_Context
- init(&ctx)
- update(&ctx, data)
- final(&ctx, hash)
-}
-
-// hash_stream_320 will read the stream in chunks and compute a
-// hash from its contents
-hash_stream_320 :: proc(s: io.Stream) -> ([DIGEST_SIZE_320]byte, bool) {
- hash: [DIGEST_SIZE_320]byte
- ctx: Ripemd320_Context
- init(&ctx)
- buf := make([]byte, 512)
- defer delete(buf)
- read := 1
- for read > 0 {
- read, _ = io.read(s, buf)
- if read > 0 {
- update(&ctx, buf[:read])
- }
- }
- final(&ctx, hash[:])
- return hash, true
-}
-
-// hash_file_320 will read the file provided by the given handle
-// and compute a hash
-hash_file_320 :: proc(hd: os.Handle, load_at_once := false) -> ([DIGEST_SIZE_320]byte, bool) {
- if !load_at_once {
- return hash_stream_320(os.stream_from_handle(hd))
- } else {
- if buf, ok := os.read_entire_file(hd); ok {
- return hash_bytes_320(buf[:]), ok
- }
- }
- return [DIGEST_SIZE_320]byte{}, false
-}
-
-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,
-}
-
-/*
- Low level API
-*/
-
-init :: proc(ctx: ^$T) {
- when T == Ripemd128_Context {
- ctx.s[0], ctx.s[1], ctx.s[2], ctx.s[3] = S0, S1, S2, S3
- } else when T == Ripemd160_Context {
- ctx.s[0], ctx.s[1], ctx.s[2], ctx.s[3], ctx.s[4] = S0, S1, S2, S3, S4
- } else when T == Ripemd256_Context {
- ctx.s[0], ctx.s[1], ctx.s[2], ctx.s[3] = S0, S1, S2, S3
- ctx.s[4], ctx.s[5], ctx.s[6], ctx.s[7] = S5, S6, S7, S8
- } else when T == Ripemd320_Context {
- ctx.s[0], ctx.s[1], ctx.s[2], ctx.s[3], ctx.s[4] = S0, S1, S2, S3, S4
- ctx.s[5], ctx.s[6], ctx.s[7], ctx.s[8], ctx.s[9] = S5, S6, S7, S8, S9
- }
-}
-
-update :: proc(ctx: ^$T, data: []byte) {
- ctx.tc += u64(len(data))
- data := data
- if ctx.nx > 0 {
- n := len(data)
-
- when T == Ripemd128_Context {
- if n > RIPEMD_128_BLOCK_SIZE - ctx.nx {
- n = RIPEMD_128_BLOCK_SIZE - ctx.nx
- }
- } else when T == Ripemd160_Context {
- if n > RIPEMD_160_BLOCK_SIZE - ctx.nx {
- n = RIPEMD_160_BLOCK_SIZE - ctx.nx
- }
- } else when T == Ripemd256_Context{
- if n > RIPEMD_256_BLOCK_SIZE - ctx.nx {
- n = RIPEMD_256_BLOCK_SIZE - ctx.nx
- }
- } else when T == Ripemd320_Context{
- if n > RIPEMD_320_BLOCK_SIZE - ctx.nx {
- n = RIPEMD_320_BLOCK_SIZE - ctx.nx
- }
- }
-
- for i := 0; i < n; i += 1 {
- ctx.x[ctx.nx + i] = data[i]
- }
-
- ctx.nx += n
- when T == Ripemd128_Context {
- if ctx.nx == RIPEMD_128_BLOCK_SIZE {
- block(ctx, ctx.x[0:])
- ctx.nx = 0
- }
- } else when T == Ripemd160_Context {
- if ctx.nx == RIPEMD_160_BLOCK_SIZE {
- block(ctx, ctx.x[0:])
- ctx.nx = 0
- }
- } else when T == Ripemd256_Context{
- if ctx.nx == RIPEMD_256_BLOCK_SIZE {
- block(ctx, ctx.x[0:])
- ctx.nx = 0
- }
- } else when T == Ripemd320_Context{
- if ctx.nx == RIPEMD_320_BLOCK_SIZE {
- block(ctx, ctx.x[0:])
- ctx.nx = 0
- }
- }
- data = data[n:]
- }
- n := block(ctx, data)
- data = data[n:]
- if len(data) > 0 {
- ctx.nx = copy(ctx.x[:], data)
- }
-}
-
-final :: proc(ctx: ^$T, hash: []byte) {
- d := ctx
- tc := d.tc
- tmp: [64]byte
- tmp[0] = 0x80
-
- if tc % 64 < 56 {
- update(d, tmp[0:56 - tc % 64])
- } else {
- update(d, tmp[0:64 + 56 - tc % 64])
- }
-
- tc <<= 3
- for i : u32 = 0; i < 8; i += 1 {
- tmp[i] = byte(tc >> (8 * i))
- }
-
- update(d, tmp[0:8])
-
- when T == Ripemd128_Context {
- size :: RIPEMD_128_SIZE
- } else when T == Ripemd160_Context {
- size :: RIPEMD_160_SIZE
- } else when T == Ripemd256_Context{
- size :: RIPEMD_256_SIZE
- } else when T == Ripemd320_Context{
- size :: RIPEMD_320_SIZE
- }
-
- digest: [size]byte
- for s, i in d.s {
- digest[i * 4] = byte(s)
- digest[i * 4 + 1] = byte(s >> 8)
- digest[i * 4 + 2] = byte(s >> 16)
- digest[i * 4 + 3] = byte(s >> 24)
- }
- copy(hash[:], digest[:])
-}
-
-
-/*
- RIPEMD implementation
-*/
-
-Ripemd128_Context :: struct {
- s: [4]u32,
- x: [RIPEMD_128_BLOCK_SIZE]byte,
- nx: int,
- tc: u64,
-}
-
-Ripemd160_Context :: struct {
- s: [5]u32,
- x: [RIPEMD_160_BLOCK_SIZE]byte,
- nx: int,
- tc: u64,
-}
-
-Ripemd256_Context :: struct {
- s: [8]u32,
- x: [RIPEMD_256_BLOCK_SIZE]byte,
- nx: int,
- tc: u64,
-}
-
-Ripemd320_Context :: struct {
- s: [10]u32,
- x: [RIPEMD_320_BLOCK_SIZE]byte,
- nx: int,
- tc: u64,
-}
-
-RIPEMD_128_SIZE :: 16
-RIPEMD_128_BLOCK_SIZE :: 64
-RIPEMD_160_SIZE :: 20
-RIPEMD_160_BLOCK_SIZE :: 64
-RIPEMD_256_SIZE :: 32
-RIPEMD_256_BLOCK_SIZE :: 64
-RIPEMD_320_SIZE :: 40
-RIPEMD_320_BLOCK_SIZE :: 64
-
-S0 :: 0x67452301
-S1 :: 0xefcdab89
-S2 :: 0x98badcfe
-S3 :: 0x10325476
-S4 :: 0xc3d2e1f0
-S5 :: 0x76543210
-S6 :: 0xfedcba98
-S7 :: 0x89abcdef
-S8 :: 0x01234567
-S9 :: 0x3c2d1e0f
-
-RIPEMD_128_N0 := [64]uint {
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
- 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8,
- 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12,
- 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2,
-}
-
-RIPEMD_128_R0 := [64]uint {
- 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8,
- 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12,
- 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5,
- 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12,
-}
-
-RIPEMD_128_N1 := [64]uint {
- 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12,
- 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2,
- 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13,
- 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14,
-}
-
-RIPEMD_128_R1 := [64]uint {
- 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6,
- 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11,
- 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5,
- 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8,
-}
-
-RIPEMD_160_N0 := [80]uint {
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
- 7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8,
- 3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12,
- 1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2,
- 4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13,
-}
-
-RIPEMD_160_R0 := [80]uint {
- 11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8,
- 7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12,
- 11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5,
- 11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12,
- 9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6,
-}
-
-RIPEMD_160_N1 := [80]uint {
- 5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12,
- 6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2,
- 15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13,
- 8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14,
- 12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11,
-}
-
-RIPEMD_160_R1 := [80]uint {
- 8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6,
- 9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11,
- 9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5,
- 15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8,
- 8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11,
-}
-
-block :: #force_inline proc (ctx: ^$T, p: []byte) -> int {
- when T == Ripemd128_Context {
- return ripemd_128_block(ctx, p)
- }
- else when T == Ripemd160_Context {
- return ripemd_160_block(ctx, p)
- }
- else when T == Ripemd256_Context {
- return ripemd_256_block(ctx, p)
- }
- else when T == Ripemd320_Context {
- return ripemd_320_block(ctx, p)
- }
-}
-
-ripemd_128_block :: proc(ctx: ^$T, p: []byte) -> int {
- n := 0
- x: [16]u32 = ---
- alpha: u32 = ---
- p := p
- for len(p) >= RIPEMD_128_BLOCK_SIZE {
- a, b, c, d := ctx.s[0], ctx.s[1], ctx.s[2], ctx.s[3]
- aa, bb, cc, dd := a, b, c, d
- for i,j := 0, 0; i < 16; i, j = i+1, j+4 {
- x[i] = u32(p[j]) | u32(p[j+1])<<8 | u32(p[j+2])<<16 | u32(p[j+3])<<24
- }
- i := 0
- for i < 16 {
- alpha = a + (b ~ c ~ d) + x[RIPEMD_128_N0[i]]
- s := int(RIPEMD_128_R0[i])
- alpha = util.ROTL32(alpha, s)
- a, b, c, d = d, alpha, b, c
- alpha = aa + (bb & dd | cc &~ dd) + x[RIPEMD_128_N1[i]] + 0x50a28be6
- s = int(RIPEMD_128_R1[i])
- alpha = util.ROTL32(alpha, s)
- aa, bb, cc, dd= dd, alpha, bb, cc
- i += 1
- }
- for i < 32 {
- alpha = a + (d ~ (b & (c~d))) + x[RIPEMD_128_N0[i]] + 0x5a827999
- s := int(RIPEMD_128_R0[i])
- alpha = util.ROTL32(alpha, s)
- a, b, c, d = d, alpha, b, c
- alpha = aa + (dd ~ (bb | ~cc)) + x[RIPEMD_128_N1[i]] + 0x5c4dd124
- s = int(RIPEMD_128_R1[i])
- alpha = util.ROTL32(alpha, s)
- aa, bb, cc, dd = dd, alpha, bb, cc
- i += 1
- }
- for i < 48 {
- alpha = a + (d ~ (b | ~c)) + x[RIPEMD_128_N0[i]] + 0x6ed9eba1
- s := int(RIPEMD_128_R0[i])
- alpha = util.ROTL32(alpha, s)
- a, b, c, d = d, alpha, b, c
- alpha = aa + (dd ~ (bb & (cc~dd))) + x[RIPEMD_128_N1[i]] + 0x6d703ef3
- s = int(RIPEMD_128_R1[i])
- alpha = util.ROTL32(alpha, s)
- aa, bb, cc, dd = dd, alpha, bb, cc
- i += 1
- }
- for i < 64 {
- alpha = a + (c ~ (d & (b~c))) + x[RIPEMD_128_N0[i]] + 0x8f1bbcdc
- s := int(RIPEMD_128_R0[i])
- alpha = util.ROTL32(alpha, s)
- a, b, c, d = d, alpha, b, c
- alpha = aa + (bb ~ cc ~ dd) + x[RIPEMD_128_N1[i]]
- s = int(RIPEMD_128_R1[i])
- alpha = util.ROTL32(alpha, s)
- aa, bb, cc, dd = dd, alpha, bb, cc
- i += 1
- }
- c = ctx.s[1] + c + dd
- ctx.s[1] = ctx.s[2] + d + aa
- ctx.s[2] = ctx.s[3] + a + bb
- ctx.s[3] = ctx.s[0] + b + cc
- ctx.s[0] = c
- p = p[RIPEMD_128_BLOCK_SIZE:]
- n += RIPEMD_128_BLOCK_SIZE
- }
- return n
-}
-
-ripemd_160_block :: proc(ctx: ^$T, p: []byte) -> int {
- n := 0
- x: [16]u32 = ---
- alpha, beta: u32 = ---, ---
- p := p
- for len(p) >= RIPEMD_160_BLOCK_SIZE {
- a, b, c, d, e := ctx.s[0], ctx.s[1], ctx.s[2], ctx.s[3], ctx.s[4]
- aa, bb, cc, dd, ee := a, b, c, d, e
- for i,j := 0, 0; i < 16; i, j = i+1, j+4 {
- x[i] = u32(p[j]) | u32(p[j+1])<<8 | u32(p[j+2])<<16 | u32(p[j+3])<<24
- }
- i := 0
- for i < 16 {
- alpha = a + (b ~ c ~ d) + x[RIPEMD_160_N0[i]]
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb ~ (cc | ~dd)) + x[RIPEMD_160_N1[i]] + 0x50a28be6
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- for i < 32 {
- alpha = a + (b&c | ~b&d) + x[RIPEMD_160_N0[i]] + 0x5a827999
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb&dd | cc&~dd) + x[RIPEMD_160_N1[i]] + 0x5c4dd124
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- for i < 48 {
- alpha = a + (b | ~c ~ d) + x[RIPEMD_160_N0[i]] + 0x6ed9eba1
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb | ~cc ~ dd) + x[RIPEMD_160_N1[i]] + 0x6d703ef3
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- for i < 64 {
- alpha = a + (b&d | c&~d) + x[RIPEMD_160_N0[i]] + 0x8f1bbcdc
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb&cc | ~bb&dd) + x[RIPEMD_160_N1[i]] + 0x7a6d76e9
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- for i < 80 {
- alpha = a + (b ~ (c | ~d)) + x[RIPEMD_160_N0[i]] + 0xa953fd4e
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb ~ cc ~ dd) + x[RIPEMD_160_N1[i]]
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- dd += c + ctx.s[1]
- ctx.s[1] = ctx.s[2] + d + ee
- ctx.s[2] = ctx.s[3] + e + aa
- ctx.s[3] = ctx.s[4] + a + bb
- ctx.s[4] = ctx.s[0] + b + cc
- ctx.s[0] = dd
- p = p[RIPEMD_160_BLOCK_SIZE:]
- n += RIPEMD_160_BLOCK_SIZE
- }
- return n
-}
-
-ripemd_256_block :: proc(ctx: ^$T, p: []byte) -> int {
- n := 0
- x: [16]u32 = ---
- alpha: u32 = ---
- p := p
- for len(p) >= RIPEMD_256_BLOCK_SIZE {
- a, b, c, d := ctx.s[0], ctx.s[1], ctx.s[2], ctx.s[3]
- aa, bb, cc, dd := ctx.s[4], ctx.s[5], ctx.s[6], ctx.s[7]
- for i,j := 0, 0; i < 16; i, j = i+1, j+4 {
- x[i] = u32(p[j]) | u32(p[j+1])<<8 | u32(p[j+2])<<16 | u32(p[j+3])<<24
- }
- i := 0
- for i < 16 {
- alpha = a + (b ~ c ~ d) + x[RIPEMD_128_N0[i]]
- s := int(RIPEMD_128_R0[i])
- alpha = util.ROTL32(alpha, s)
- a, b, c, d = d, alpha, b, c
- alpha = aa + (bb & dd | cc &~ dd) + x[RIPEMD_128_N1[i]] + 0x50a28be6
- s = int(RIPEMD_128_R1[i])
- alpha = util.ROTL32(alpha, s)
- aa, bb, cc, dd= dd, alpha, bb, cc
- i += 1
- }
- t := a
- a = aa
- aa = t
- for i < 32 {
- alpha = a + (d ~ (b & (c~d))) + x[RIPEMD_128_N0[i]] + 0x5a827999
- s := int(RIPEMD_128_R0[i])
- alpha = util.ROTL32(alpha, s)
- a, b, c, d = d, alpha, b, c
- alpha = aa + (dd ~ (bb | ~cc)) + x[RIPEMD_128_N1[i]] + 0x5c4dd124
- s = int(RIPEMD_128_R1[i])
- alpha = util.ROTL32(alpha, s)
- aa, bb, cc, dd = dd, alpha, bb, cc
- i += 1
- }
- t = b
- b = bb
- bb = t
- for i < 48 {
- alpha = a + (d ~ (b | ~c)) + x[RIPEMD_128_N0[i]] + 0x6ed9eba1
- s := int(RIPEMD_128_R0[i])
- alpha = util.ROTL32(alpha, s)
- a, b, c, d = d, alpha, b, c
- alpha = aa + (dd ~ (bb & (cc~dd))) + x[RIPEMD_128_N1[i]] + 0x6d703ef3
- s = int(RIPEMD_128_R1[i])
- alpha = util.ROTL32(alpha, s)
- aa, bb, cc, dd = dd, alpha, bb, cc
- i += 1
- }
- t = c
- c = cc
- cc = t
- for i < 64 {
- alpha = a + (c ~ (d & (b~c))) + x[RIPEMD_128_N0[i]] + 0x8f1bbcdc
- s := int(RIPEMD_128_R0[i])
- alpha = util.ROTL32(alpha, s)
- a, b, c, d = d, alpha, b, c
- alpha = aa + (bb ~ cc ~ dd) + x[RIPEMD_128_N1[i]]
- s = int(RIPEMD_128_R1[i])
- alpha = util.ROTL32(alpha, s)
- aa, bb, cc, dd = dd, alpha, bb, cc
- i += 1
- }
- t = d
- d = dd
- dd = t
- ctx.s[0] += a
- ctx.s[1] += b
- ctx.s[2] += c
- ctx.s[3] += d
- ctx.s[4] += aa
- ctx.s[5] += bb
- ctx.s[6] += cc
- ctx.s[7] += dd
- p = p[RIPEMD_256_BLOCK_SIZE:]
- n += RIPEMD_256_BLOCK_SIZE
- }
- return n
-}
-
-ripemd_320_block :: proc(ctx: ^$T, p: []byte) -> int {
- n := 0
- x: [16]u32 = ---
- alpha, beta: u32 = ---, ---
- p := p
- for len(p) >= RIPEMD_320_BLOCK_SIZE {
- a, b, c, d, e := ctx.s[0], ctx.s[1], ctx.s[2], ctx.s[3], ctx.s[4]
- aa, bb, cc, dd, ee := ctx.s[5], ctx.s[6], ctx.s[7], ctx.s[8], ctx.s[9]
- for i,j := 0, 0; i < 16; i, j = i+1, j+4 {
- x[i] = u32(p[j]) | u32(p[j+1])<<8 | u32(p[j+2])<<16 | u32(p[j+3])<<24
- }
- i := 0
- for i < 16 {
- alpha = a + (b ~ c ~ d) + x[RIPEMD_160_N0[i]]
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb ~ (cc | ~dd)) + x[RIPEMD_160_N1[i]] + 0x50a28be6
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- t := b
- b = bb
- bb = t
- for i < 32 {
- alpha = a + (b&c | ~b&d) + x[RIPEMD_160_N0[i]] + 0x5a827999
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb&dd | cc&~dd) + x[RIPEMD_160_N1[i]] + 0x5c4dd124
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- t = d
- d = dd
- dd = t
- for i < 48 {
- alpha = a + (b | ~c ~ d) + x[RIPEMD_160_N0[i]] + 0x6ed9eba1
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb | ~cc ~ dd) + x[RIPEMD_160_N1[i]] + 0x6d703ef3
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- t = a
- a = aa
- aa = t
- for i < 64 {
- alpha = a + (b&d | c&~d) + x[RIPEMD_160_N0[i]] + 0x8f1bbcdc
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb&cc | ~bb&dd) + x[RIPEMD_160_N1[i]] + 0x7a6d76e9
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- t = c
- c = cc
- cc = t
- for i < 80 {
- alpha = a + (b ~ (c | ~d)) + x[RIPEMD_160_N0[i]] + 0xa953fd4e
- s := int(RIPEMD_160_R0[i])
- alpha = util.ROTL32(alpha, s) + e
- beta = util.ROTL32(c, 10)
- a, b, c, d, e = e, alpha, b, beta, d
- alpha = aa + (bb ~ cc ~ dd) + x[RIPEMD_160_N1[i]]
- s = int(RIPEMD_160_R1[i])
- alpha = util.ROTL32(alpha, s) + ee
- beta = util.ROTL32(cc, 10)
- aa, bb, cc, dd, ee = ee, alpha, bb, beta, dd
- i += 1
- }
- t = e
- e = ee
- ee = t
- ctx.s[0] += a
- ctx.s[1] += b
- ctx.s[2] += c
- ctx.s[3] += d
- ctx.s[4] += e
- ctx.s[5] += aa
- ctx.s[6] += bb
- ctx.s[7] += cc
- ctx.s[8] += dd
- ctx.s[9] += ee
- p = p[RIPEMD_320_BLOCK_SIZE:]
- n += RIPEMD_320_BLOCK_SIZE
- }
- return n
-}
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin
index 4524ebf2a..74ac7401e 100644
--- a/examples/all/all_main.odin
+++ b/examples/all/all_main.odin
@@ -30,7 +30,6 @@ import chacha20poly1305 "core:crypto/chacha20poly1305"
import keccak "core:crypto/keccak"
import md5 "core:crypto/md5"
import poly1305 "core:crypto/poly1305"
-import ripemd "core:crypto/ripemd"
import sha1 "core:crypto/sha1"
import sha2 "core:crypto/sha2"
import sha3 "core:crypto/sha3"
@@ -150,7 +149,6 @@ _ :: chacha20poly1305
_ :: keccak
_ :: md5
_ :: poly1305
-_ :: ripemd
_ :: sha1
_ :: sha2
_ :: sha3
diff --git a/examples/all/all_vendor.odin b/examples/all/all_vendor.odin
index 8722aabe8..637cdfcb8 100644
--- a/examples/all/all_vendor.odin
+++ b/examples/all/all_vendor.odin
@@ -4,7 +4,6 @@ import botan_bindings "vendor:botan/bindings"
import botan_blake2b "vendor:botan/blake2b"
import keccak "vendor:botan/keccak"
import md5 "vendor:botan/md5"
-import ripemd "vendor:botan/ripemd"
import sha1 "vendor:botan/sha1"
import sha2 "vendor:botan/sha2"
import sha3 "vendor:botan/sha3"
@@ -48,7 +47,6 @@ _ :: botan_bindings
_ :: botan_blake2b
_ :: keccak
_ :: md5
-_ :: ripemd
_ :: sha1
_ :: sha2
_ :: sha3
diff --git a/tests/core/crypto/test_core_crypto.odin b/tests/core/crypto/test_core_crypto.odin
index af45ef85a..362d79d2b 100644
--- a/tests/core/crypto/test_core_crypto.odin
+++ b/tests/core/crypto/test_core_crypto.odin
@@ -23,7 +23,6 @@ import "core:crypto/sha3"
import "core:crypto/keccak"
import "core:crypto/shake"
import "core:crypto/whirlpool"
-import "core:crypto/ripemd"
import "core:crypto/blake2b"
import "core:crypto/blake2s"
import "core:crypto/tiger"
@@ -78,10 +77,6 @@ main :: proc() {
test_streebog_512(&t)
test_blake2b(&t)
test_blake2s(&t)
- test_ripemd_128(&t)
- test_ripemd_160(&t)
- test_ripemd_256(&t)
- test_ripemd_320(&t)
test_tiger_128(&t)
test_tiger_160(&t)
test_tiger_192(&t)
@@ -513,86 +508,6 @@ test_blake2s :: proc(t: ^testing.T) {
}
@(test)
-test_ripemd_128 :: proc(t: ^testing.T) {
- // Test vectors from
- // https://homes.esat.kuleuven.be/~bosselae/ripemd160.html
- test_vectors := [?]TestHash {
- TestHash{"cdf26213a150dc3ecb610f18f6b38b46", ""},
- TestHash{"86be7afa339d0fc7cfc785e72f578d33", "a"},
- TestHash{"c14a12199c66e4ba84636b0f69144c77", "abc"},
- TestHash{"9e327b3d6e523062afc1132d7df9d1b8", "message digest"},
- TestHash{"fd2aa607f71dc8f510714922b371834e", "abcdefghijklmnopqrstuvwxyz"},
- TestHash{"a1aa0689d0fafa2ddc22e88b49133a06", "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"},
- TestHash{"d1e959eb179c911faea4624c60c5c702", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"},
- }
- for v, _ in test_vectors {
- computed := ripemd.hash_128(v.str)
- computed_str := hex_string(computed[:])
- expect(t, computed_str == v.hash, fmt.tprintf("Expected: %s for input of %s, but got %s instead", v.hash, v.str, computed_str))
- }
-}
-
-@(test)
-test_ripemd_160 :: proc(t: ^testing.T) {
- // Test vectors from
- // https://homes.esat.kuleuven.be/~bosselae/ripemd160.html
- test_vectors := [?]TestHash {
- TestHash{"9c1185a5c5e9fc54612808977ee8f548b2258d31", ""},
- TestHash{"0bdc9d2d256b3ee9daae347be6f4dc835a467ffe", "a"},
- TestHash{"8eb208f7e05d987a9b044a8e98c6b087f15a0bfc", "abc"},
- TestHash{"5d0689ef49d2fae572b881b123a85ffa21595f36", "message digest"},
- TestHash{"f71c27109c692c1b56bbdceb5b9d2865b3708dbc", "abcdefghijklmnopqrstuvwxyz"},
- TestHash{"12a053384a9c0c88e405a06c27dcf49ada62eb2b", "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"},
- TestHash{"b0e20b6e3116640286ed3a87a5713079b21f5189", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"},
- }
- for v, _ in test_vectors {
- computed := ripemd.hash_160(v.str)
- computed_str := hex_string(computed[:])
- expect(t, computed_str == v.hash, fmt.tprintf("Expected: %s for input of %s, but got %s instead", v.hash, v.str, computed_str))
- }
-}
-
-@(test)
-test_ripemd_256 :: proc(t: ^testing.T) {
- // Test vectors from
- // https://homes.esat.kuleuven.be/~bosselae/ripemd160.html
- test_vectors := [?]TestHash {
- TestHash{"02ba4c4e5f8ecd1877fc52d64d30e37a2d9774fb1e5d026380ae0168e3c5522d", ""},
- TestHash{"f9333e45d857f5d90a91bab70a1eba0cfb1be4b0783c9acfcd883a9134692925", "a"},
- TestHash{"afbd6e228b9d8cbbcef5ca2d03e6dba10ac0bc7dcbe4680e1e42d2e975459b65", "abc"},
- TestHash{"87e971759a1ce47a514d5c914c392c9018c7c46bc14465554afcdf54a5070c0e", "message digest"},
- TestHash{"649d3034751ea216776bf9a18acc81bc7896118a5197968782dd1fd97d8d5133", "abcdefghijklmnopqrstuvwxyz"},
- TestHash{"3843045583aac6c8c8d9128573e7a9809afb2a0f34ccc36ea9e72f16f6368e3f", "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"},
- TestHash{"5740a408ac16b720b84424ae931cbb1fe363d1d0bf4017f1a89f7ea6de77a0b8", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"},
- }
- for v, _ in test_vectors {
- computed := ripemd.hash_256(v.str)
- computed_str := hex_string(computed[:])
- expect(t, computed_str == v.hash, fmt.tprintf("Expected: %s for input of %s, but got %s instead", v.hash, v.str, computed_str))
- }
-}
-
-@(test)
-test_ripemd_320 :: proc(t: ^testing.T) {
- // Test vectors from
- // https://homes.esat.kuleuven.be/~bosselae/ripemd160.html
- test_vectors := [?]TestHash {
- TestHash{"22d65d5661536cdc75c1fdf5c6de7b41b9f27325ebc61e8557177d705a0ec880151c3a32a00899b8", ""},
- TestHash{"ce78850638f92658a5a585097579926dda667a5716562cfcf6fbe77f63542f99b04705d6970dff5d", "a"},
- TestHash{"de4c01b3054f8930a79d09ae738e92301e5a17085beffdc1b8d116713e74f82fa942d64cdbc4682d", "abc"},
- TestHash{"3a8e28502ed45d422f68844f9dd316e7b98533fa3f2a91d29f84d425c88d6b4eff727df66a7c0197", "message digest"},
- TestHash{"cabdb1810b92470a2093aa6bce05952c28348cf43ff60841975166bb40ed234004b8824463e6b009", "abcdefghijklmnopqrstuvwxyz"},
- TestHash{"d034a7950cf722021ba4b84df769a5de2060e259df4c9bb4a4268c0e935bbc7470a969c9d072a1ac", "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"},
- TestHash{"ed544940c86d67f250d232c30b7b3e5770e0c60c8cb9a4cafe3b11388af9920e1b99230b843c86a4", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"},
- }
- for v, _ in test_vectors {
- computed := ripemd.hash_320(v.str)
- computed_str := hex_string(computed[:])
- expect(t, computed_str == v.hash, fmt.tprintf("Expected: %s for input of %s, but got %s instead", v.hash, v.str, computed_str))
- }
-}
-
-@(test)
test_tiger_128 :: proc(t: ^testing.T) {
test_vectors := [?]TestHash {
TestHash{"3293ac630c13f0245f92bbb1766e1616", ""},
diff --git a/tests/vendor/botan/test_vendor_botan.odin b/tests/vendor/botan/test_vendor_botan.odin
index 33f8b149a..05a2eb8e7 100644
--- a/tests/vendor/botan/test_vendor_botan.odin
+++ b/tests/vendor/botan/test_vendor_botan.odin
@@ -24,7 +24,6 @@ import "vendor:botan/sha3"
import "vendor:botan/keccak"
import "vendor:botan/shake"
import "vendor:botan/whirlpool"
-import "vendor:botan/ripemd"
import "vendor:botan/blake2b"
import "vendor:botan/tiger"
import "vendor:botan/streebog"
@@ -74,7 +73,6 @@ main :: proc() {
test_streebog_256(&t)
test_streebog_512(&t)
test_blake2b(&t)
- test_ripemd_160(&t)
// test_tiger_128(&t)
// test_tiger_160(&t)
// test_tiger_192(&t)
@@ -420,26 +418,6 @@ test_blake2b :: proc(t: ^testing.T) {
}
@(test)
-test_ripemd_160 :: proc(t: ^testing.T) {
- // Test vectors from
- // https://homes.esat.kuleuven.be/~bosselae/ripemd160.html
- test_vectors := [?]TestHash {
- TestHash{"9c1185a5c5e9fc54612808977ee8f548b2258d31", ""},
- TestHash{"0bdc9d2d256b3ee9daae347be6f4dc835a467ffe", "a"},
- TestHash{"8eb208f7e05d987a9b044a8e98c6b087f15a0bfc", "abc"},
- TestHash{"5d0689ef49d2fae572b881b123a85ffa21595f36", "message digest"},
- TestHash{"f71c27109c692c1b56bbdceb5b9d2865b3708dbc", "abcdefghijklmnopqrstuvwxyz"},
- TestHash{"12a053384a9c0c88e405a06c27dcf49ada62eb2b", "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"},
- TestHash{"b0e20b6e3116640286ed3a87a5713079b21f5189", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"},
- }
- for v, _ in test_vectors {
- computed := ripemd.hash_160(v.str)
- computed_str := hex_string(computed[:])
- expect(t, computed_str == v.hash, fmt.tprintf("Expected: %s for input of %s, but got %s instead", v.hash, v.str, computed_str))
- }
-}
-
-@(test)
test_tiger_128 :: proc(t: ^testing.T) {
test_vectors := [?]TestHash {
TestHash{"3293ac630c13f0245f92bbb1766e1616", ""},
diff --git a/vendor/botan/README.md b/vendor/botan/README.md
index d618d727c..81f638dab 100644
--- a/vendor/botan/README.md
+++ b/vendor/botan/README.md
@@ -11,7 +11,6 @@ Wrappers for hashing algorithms have been added to match the API within the Odin
| [BLAKE2B](https://datatracker.ietf.org/doc/html/rfc7693) | &#10004;&#65039; |
| [Keccak](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf) | &#10004;&#65039; |
| [MD5](https://datatracker.ietf.org/doc/html/rfc1321) | &#10004;&#65039; |
-| [RIPEMD-160](https://homes.esat.kuleuven.be/~bosselae/ripemd160.html) | &#10004;&#65039; |
| [SHA-1](https://datatracker.ietf.org/doc/html/rfc3174) | &#10004;&#65039; |
| [SHA-2](https://csrc.nist.gov/csrc/media/publications/fips/180/2/archive/2002-08-01/documents/fips180-2.pdf) | &#10004;&#65039; |
| [SHA-3](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf) | &#10004;&#65039; |
diff --git a/vendor/botan/bindings/botan.odin b/vendor/botan/bindings/botan.odin
index 57fa78a37..42add09de 100644
--- a/vendor/botan/bindings/botan.odin
+++ b/vendor/botan/bindings/botan.odin
@@ -74,7 +74,6 @@ HASH_SHA3_512 :: "SHA-3(512)"
HASH_SHAKE_128 :: "SHAKE-128"
HASH_SHAKE_256 :: "SHAKE-256"
HASH_KECCAK_512 :: "Keccak-1600"
-HASH_RIPEMD_160 :: "RIPEMD-160"
HASH_WHIRLPOOL :: "Whirlpool"
HASH_BLAKE2B :: "BLAKE2b"
HASH_MD5 :: "MD5"
diff --git a/vendor/botan/ripemd/ripemd.odin b/vendor/botan/ripemd/ripemd.odin
deleted file mode 100644
index ddb549350..000000000
--- a/vendor/botan/ripemd/ripemd.odin
+++ /dev/null
@@ -1,121 +0,0 @@
-package vendor_ripemd
-
-/*
- Copyright 2021 zhibog
- Made available under the BSD-3 license.
-
- List of contributors:
- zhibog, dotbmp: Initial implementation.
-
- Interface for the RIPEMD-160 hashing algorithm.
- The hash will be computed via bindings to the Botan crypto library
-*/
-
-import "core:os"
-import "core:io"
-
-import botan "../bindings"
-
-/*
- High level API
-*/
-
-DIGEST_SIZE_160 :: 20
-
-// hash_string_160 will hash the given input and return the
-// computed hash
-hash_string_160 :: proc(data: string) -> [DIGEST_SIZE_160]byte {
- return hash_bytes_160(transmute([]byte)(data))
-}
-
-// hash_bytes_160 will hash the given input and return the
-// computed hash
-hash_bytes_160 :: proc(data: []byte) -> [DIGEST_SIZE_160]byte {
- hash: [DIGEST_SIZE_160]byte
- ctx: botan.hash_t
- botan.hash_init(&ctx, botan.HASH_RIPEMD_160, 0)
- botan.hash_update(ctx, len(data) == 0 ? nil : &data[0], uint(len(data)))
- botan.hash_final(ctx, &hash[0])
- botan.hash_destroy(ctx)
- return hash
-}
-
-// 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_160 :: proc(data: string, hash: []byte) {
- hash_bytes_to_buffer_160(transmute([]byte)(data), hash)
-}
-
-// 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_160 :: proc(data, hash: []byte) {
- assert(len(hash) >= DIGEST_SIZE_160, "Size of destination buffer is smaller than the digest size")
- ctx: botan.hash_t
- botan.hash_init(&ctx, botan.HASH_RIPEMD_160, 0)
- botan.hash_update(ctx, len(data) == 0 ? nil : &data[0], uint(len(data)))
- botan.hash_final(ctx, &hash[0])
- botan.hash_destroy(ctx)
-}
-
-// hash_stream_160 will read the stream in chunks and compute a
-// hash from its contents
-hash_stream_160 :: proc(s: io.Stream) -> ([DIGEST_SIZE_160]byte, bool) {
- hash: [DIGEST_SIZE_160]byte
- ctx: botan.hash_t
- botan.hash_init(&ctx, botan.HASH_RIPEMD_160, 0)
- buf := make([]byte, 512)
- defer delete(buf)
- i := 1
- for i > 0 {
- i, _ = io.read(s, buf)
- if i > 0 {
- botan.hash_update(ctx, len(buf) == 0 ? nil : &buf[0], uint(i))
- }
- }
- botan.hash_final(ctx, &hash[0])
- botan.hash_destroy(ctx)
- return hash, true
-}
-
-// hash_file_160 will read the file provided by the given handle
-// and compute a hash
-hash_file_160 :: proc(hd: os.Handle, load_at_once := false) -> ([DIGEST_SIZE_160]byte, bool) {
- if !load_at_once {
- return hash_stream_160(os.stream_from_handle(hd))
- } else {
- if buf, ok := os.read_entire_file(hd); ok {
- return hash_bytes_160(buf[:]), ok
- }
- }
- return [DIGEST_SIZE_160]byte{}, false
-}
-
-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,
-}
-
-/*
- Low level API
-*/
-
-Ripemd160_Context :: botan.hash_t
-
-init :: proc "contextless" (ctx: ^botan.hash_t) {
- botan.hash_init(ctx, botan.HASH_RIPEMD_160, 0)
-}
-
-update :: proc "contextless" (ctx: ^botan.hash_t, data: []byte) {
- botan.hash_update(ctx^, len(data) == 0 ? nil : &data[0], uint(len(data)))
-}
-
-final :: proc "contextless" (ctx: ^botan.hash_t, hash: []byte) {
- botan.hash_final(ctx^, &hash[0])
- botan.hash_destroy(ctx^)
-}