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
- 안드로이드 푸시
- php 취약점
- dovecot
- android 효과음
- 자동 생성
- C#
- 안드로이드 gcm
- not working
- 설치
- Android
- roundcube
- 우분투
- C# IO
- curl
- UML
- mysql
- WebView
- FCM
- Mail Server
- chart.js
- 안드로이드
- PHP
- php 시큐어코딩
- xe
- 자바스크립트
- javascript
- soundpool
- html5
- 폼메일
- 안드로이드 푸쉬
Archives
- Today
- Total
목록php md5() 함수와 동일한 기능의 C#함수 (1)
그러냐
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
c#
2016. 1. 28. 11:24