Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- chart.js
- 우분투
- Android
- 설치
- Mail Server
- roundcube
- UML
- PHP
- dovecot
- javascript
- WebView
- 안드로이드
- 자동 생성
- 안드로이드 푸시
- curl
- php 취약점
- android 효과음
- C# IO
- 자바스크립트
- mysql
- xe
- FCM
- soundpool
- 폼메일
- 안드로이드 푸쉬
- html5
- 안드로이드 gcm
- C#
- not working
- php 시큐어코딩
Archives
- Today
- Total
그러냐
php md5() 함수와 동일한 기능의 C#함수 본문
반응형
public static string MD5(string password) {
byte[] textBytes = System.Text.Encoding.Default.GetBytes(password);
try {
System.Security.Cryptography.MD5CryptoServiceProvider cryptHandler;
cryptHandler = new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] hash = cryptHandler.ComputeHash (textBytes);
string ret = "";
foreach (byte a in hash) {
if (a<16)
ret += "0" + a.ToString ("x");
else
ret += a.ToString ("x");
}
return ret ;
}
catch {
throw;
}
}
출처 : http://www.spiration.co.uk/post/1203/MD5-in-C%23---works-like-php-md5()-example
반응형
'c#' 카테고리의 다른 글
c# 이미지 반투명 (0) | 2016.01.28 |
---|---|
이미지 회전 (0) | 2016.01.28 |
델리게이트(delegate) 활용_2 (0) | 2016.01.28 |
델리게이트(delegate) 활용_1 (0) | 2016.01.28 |
C# 2.0의 새로운 기능들 (0) | 2016.01.28 |