摘要: /* * Go Lang中MD5加密方法: 密码 + 盐(一串随机数)再Hash的方式 */ package main import ( "crypto/md5" "fmt" "io" ) // 定义常量,加密密码的盐 const salt = "slo3!458@#134@" func main( 阅读全文
posted @ 2024-10-06 00:28 沉雪's 阅读(59) 评论(0) 推荐(0) 编辑