Contents

Develop
2013.04.23 17:40

[C#] MD5, SHA1 해시 & 인코딩

Views 77974 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
해시와 인코딩 두개 함수.. ㅎㅎ
by picomax

# MD5 Hash Crypt
public static string MD5HashCrypt(string val)
{
    byte[] data = Encoding.ASCII.GetBytes(val);
    MD5 md5 = new MD5CryptoServiceProvider();
    byte[] result = md5.ComputeHash(data);

    //return Encoding.ASCII.GetString(result);
    return Convert.ToBase64String(result);
}

# SHA1 Hash Crypt
public static string SHA1HashCrypt(string val)
{
    byte[] data = Encoding.ASCII.GetBytes(val);
    SHA1 sha = new SHA1CryptoServiceProvider();
    byte[] result = sha.ComputeHash(data);

    //return Encoding.ASCII.GetString(result);
    return Convert.ToBase64String(result);
}

TAG •

?

  1. [android] 만화 어플 소스코드

    Date2013.04.23 CategoryDevelop Byhooni Views92926
    Read More
  2. [android] 안드로이드 어플 모음 ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views16340
    Read More
  3. [android] 점심 해결 앱 소스 코드 ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views76506
    Read More
  4. [android][ios] 알림(Notification) 기능에 대한 원리와 구현 방안 (APNS포함)

    Date2013.04.23 CategoryPPT Byhooni Views37923
    Read More
  5. [c#] Hashtable <-> Json (dll 포함)

    Date2013.04.23 CategoryDevelop Byhooni Views80733
    Read More
  6. [C#] MD5, SHA1 해시 & 인코딩

    Date2013.04.23 CategoryDevelop Byhooni Views77974
    Read More
  7. [c#] 웹문서 소스(html) 긁어오기

    Date2013.04.23 CategoryDevelop Byhooni Views24579
    Read More
  8. [c] 64bit 머신에서 inet_ntoa() 사용시 Segment fault 대처 방법법

    Date2014.02.08 CategoryDevelop Byhooni Views14266
    Read More
  9. [c] Mac OS 에 gmp(gmp.h) 라이브러리 설치

    Date2016.10.03 CategoryDevelop Byhooni Views1452
    Read More
  10. [c] 메시지큐(Message Queue) 설명.. (joinc)

    Date2013.04.23 CategoryDevelop Byhooni Views14310
    Read More
  11. [c] 프로세스 검사하기

    Date2013.04.23 CategoryDevelop Byhooni Views8051
    Read More
  12. [ios] Did UIScrollView End Scrolling?

    Date2016.04.19 CategoryDevelop Byhooni Views1181
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 Next
/ 7