본문 바로가기
프로그래밍/C#

[C#] MD5 암호화

by 뽀도 2020. 9. 3.
 string GetMD5Hash(string password)
 {
   	var mdHash = MD5.Create();

    var data = mdHash.ComputeHash(Encoding.UTF8.GetBytes(password));
    var stringBuilder = new StringBuilder();

    for (int i = 0; i < data.Length; i++)
    {
    stringBuilder.Append(data[i].ToString("x2"));
    }

    return stringBuilder.ToString();
}
반응형

'프로그래밍 > C#' 카테고리의 다른 글

[C#] localIP / public IP 가져오기  (0) 2021.03.23
[C#] 파일 압축하기  (0) 2020.12.21
Dapper 사용시 key/explicitKey  (0) 2020.01.03
GetLocalIP()  (0) 2019.11.13
Reflection : 객체 이름으로 객체 생성하기.  (0) 2019.07.29

댓글