Skip to content

RaymondClr/extendScript-MD5

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

计算给定字符串值的(hex-编码)MD5哈希值:

var hash = md5('value') // "2063c1608d6e0baf80249c42e2be5804"

计算给定字符串值和密钥的(hex-编码)HMAC-MD5哈希值:

var hash = md5('value', 'key') // "01433efd5f16327ea4b31144572c67f6"

计算一个给定字符串值的原始 MD5 哈希值:

var hash = md5('value', null, true)

计算给定字符串值和密钥的原始 HMAC-MD5 哈希值:

var hash = md5('value', 'key', true)

About

为 extendScript 适配的 MD5

Resources

Stars

Watchers

Forks

Languages

  • JavaScript 100.0%