md5签名是开发中经常用到的,今天分享下vlang中使用如何使用md5签名函数。
示例代码:
import crypto.md5 fn main(){ text:="hello world!" sign:=md5.sum(text.bytes()).hex() println(sign.to_upper()) //FC3FF98E8C6A0D3087D515C0473F8677 println(sign.to_lower()) //fc3ff98e8c6a0d3087d515c0473f8677 }