1
0
Fork 0
forked from fun/fun

Added OpenSSL RIPEMD-160 fun. (0.38.14)

This commit is contained in:
Johannes Findeisen 2026-02-19 14:19:17 +01:00
commit 6fa95f0d47
15 changed files with 144 additions and 9 deletions

View file

@ -869,10 +869,11 @@ void vm_run(VM *vm, Bytecode *entry) {
#include "vm/curl/download.c"
#endif
/* OpenSSL ops (md5/sha256/sha512) */
/* OpenSSL ops (md5/sha256/sha512/ripemd160) */
#include "vm/openssl/md5.c"
#include "vm/openssl/sha256.c"
#include "vm/openssl/sha512.c"
#include "vm/openssl/ripemd160.c"
/* Tk (Tcl/Tk) ops */
#ifdef FUN_WITH_TCLTK