go2hx

manual

github

Module: stdgo.crypto.md5

(view library index)

Overview

Index

Constants

import stdgo.crypto.md5.Md5
final blockSize:haxe.UInt64 = stdgo._internal.crypto.md5.Md5_blockSize.blockSize
final size:haxe.UInt64 = stdgo._internal.crypto.md5.Md5_size.size

Classes

import stdgo.crypto.md5.*

class Md5

Package md5 implements the MD5 hash algorithm as defined in RFC 1321.

MD5 is cryptographically broken and should not be used for secure applications.

Md5 function new_

function new_():stdgo._internal.hash.Hash
New returns a new hash.Hash computing the MD5 checksum. The Hash also
        implements encoding.BinaryMarshaler and encoding.BinaryUnmarshaler to
        marshal and unmarshal the internal state of the hash.

(view code)

Md5 function sum

function sum(_data:Array<UInt>):haxe.ds.Vector<UInt>

Sum returns the MD5 checksum of the data.

(view code)

Abstracts

abstract T_digest

(view file containing code)