MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / skr_parse_md5

Function skr_parse_md5

modules/core/base/src/SkrBase/build.md5.cpp:66–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64#include "crypt/md5.h"
65
66SKR_EXTERN_C bool skr_parse_md5(const char8_t* str32, skr_md5_t* out_md5)
67{
68 std::u8string_view sv(str32, 32);
69 if (!out_md5) return false;
70 return make_md5(sv, *out_md5);
71}
72
73SKR_EXTERN_C void skr_make_md5(const char8_t* str, uint32_t str_size, skr_md5_t* out_md5)
74{

Callers 3

FromStringMethod · 0.85
ReadMethod · 0.85
math.cppFile · 0.85

Calls 1

make_md5Function · 0.85

Tested by

no test coverage detected