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