DoxigAlpha

init

Function parameters

Parameters

#

The MD5 function is now considered cryptographically broken.

Types

#
Md5
The MD5 function is now considered cryptographically broken.

Source

Implementation

#
pub fn init(options: Options) Self {
    _ = options;
    return Self{
        .s = [_]u32{
            0x67452301,
            0xEFCDAB89,
            0x98BADCFE,
            0x10325476,
        },
        .buf = undefined,
        .buf_len = 0,
        .total_len = 0,
    };
}