Processing ForumのPostを少し変更してクラス化してみました。ソースはGitHubにアップしてあります。
MD5.pde
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 32 33 34 35 |
import java.security.*; class MD5{ MD5(){} public String Encrypt(String st){ String md5 = ""; try { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(st.getBytes()); byte[] output = md.digest(); md5 = BytesToHex(output); }catch (Exception e) { println("Exception: " + e); } return md5; } public String BytesToHex(byte[] b) { char hexDigit[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' }; StringBuffer buf = new StringBuffer(); for (int j = 0; j < b.length; j++) { buf.append(hexDigit[(b[j] >>4) & 0x0f]); buf.append(hexDigit[b[j] & 0x0f]); } return buf.toString(); } } |
参考:https://forum.processing.org/one/topic/encrypt-a-string.html
MD5Processing.pde
呼び出し側
1 2 3 4 5 6 7 |
private MD5 md5 = new MD5(); void setup() { println(md5.Encrypt("test")); } |
コメントを残す