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 |
Tags
- 자동 생성
- UML
- FCM
- Android
- soundpool
- php 시큐어코딩
- 안드로이드 gcm
- 우분투
- 설치
- PHP
- android 효과음
- 폼메일
- roundcube
- WebView
- curl
- xe
- chart.js
- C#
- 안드로이드 푸쉬
- dovecot
- php 취약점
- C# IO
- not working
- 자바스크립트
- 안드로이드
- html5
- 안드로이드 푸시
- mysql
- javascript
- Mail Server
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