티스토리 뷰
public static String md5Hex(String s) {
try {
MessageDigest sh = MessageDigest.getInstance("MD5");
sh.update(s.getBytes());
byte byteData[] = sh.digest();
StringBuffer sb = new StringBuffer();
for (int i = 0; i < byteData.length; i++) {
sb.append(Integer.toString((byteData[i]&0xff) + 0x100, 16).substring(1));
}
return sb.toString();
}
catch(NoSuchAlgorithmException e) {
e.printStackTrace();
}
return null;
}
public static String sha256Hex(String s) {
String SHA = s;
try {
MessageDigest sh = MessageDigest.getInstance("SHA-256");
sh.update(s.getBytes());
byte byteData[] = sh.digest();
StringBuffer sb = new StringBuffer();
for (int i = 0; i < byteData.length; i++) {
sb.append(Integer.toString((byteData[i]&0xff) + 0x100, 16).substring(1));
}
SHA = sb.toString();
}
catch(NoSuchAlgorithmException e) {
e.printStackTrace();
SHA = null;
}
return SHA;
}
'android' 카테고리의 다른 글
안드로이드 재귀호출을 이용한 1초마다 반복하기. for문 딜레이 (0) | 2019.04.17 |
---|---|
자바 화폐 콤마 찍기, 안드로이드 화폐 콤마 찍기, 국가 별 화폐 기호 구하기 (0) | 2019.04.17 |
안드로이드 스위치 구현 (0) | 2019.04.17 |
안드로이드 픽셀 구하기, 디피 구하기. (0) | 2019.04.17 |
안드로이드 내부 디비에 있는 사진 및 동영상 경로 가져오기 (0) | 2019.04.17 |
- Total
- Today
- Yesterday
- rn
- 구글 맵 선그리기
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- react native state
- 함수형 코드
- ubunut android
- mongo db
- 귀찮아;;
- 클래스형 코드
- Android
- ubunut 설치 link
- mac android
- not working adb
- MongoDB
- not starting .bash_profile
- 안드로이드
- spannableText
- React Native
- nosql
- 자바
- 차번호 정규식
- 구글 맵 경로 그리기
- not found adb
- adb 환경변수
- insert
- 명령어
- text 부분 색 칠하기
- 차번호 정규표현식
- https://hwan-shell.tistory.com/244
- 데이터베이스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |