mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-22 19:08:43 +08:00
8 lines
230 B
Plaintext
8 lines
230 B
Plaintext
import("lib.nas");
|
|
|
|
var md5=func(str){
|
|
var lib=dylib.dlopen("./module/libmd5"~(os.platform()=="windows"?".dll":".so"));
|
|
var res=dylib.dlcall(dylib.dlsym(lib,"nas_md5"),str);
|
|
dylib.dlclose(lib);
|
|
return res;
|
|
} |