Digest::MD5

class Digest::MD5

Overview

Implements the MD5 digest algorithm.

Defined in:

digest/md5.cr

Constant Summary

PADDING = padding = StaticArray(UInt8, 64).new(0_u8) padding[0] = 128_u8 padding
S11 = 7
S12 = 12
S13 = 17
S14 = 22
S21 = 5
S22 = 9
S23 = 14
S24 = 20
S31 = 4
S32 = 11
S33 = 16
S34 = 23
S41 = 6
S42 = 10
S43 = 15
S44 = 21

Class Method Summary

Instance Method Summary

Class Method Detail

def self.newSource

Instance Method Detail

def f(x, y, z)Source

def ff(a, b, c, d, x, s, ac)Source

def finalSource

def g(x, y, z)Source

def gg(a, b, c, d, x, s, ac)Source

def h(x, y, z)Source

def hh(a, b, c, d, x, s, ac)Source

def i(x, y, z)Source

def ii(a, b, c, d, x, s, ac)Source

def result : StaticArray(UInt8, 16)Source

def rotate_left(x, n)Source

def transform(in)Source

def update(inBuf, inLen)Source

def update(data)Source

© 2012–2017 Manas Technology Solutions.
Licensed under the Apache License, Version 2.0.
https://crystal-lang.org/api/0.22.0/Digest/MD5.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部