blinding(crypthology) in java
I have a message like 'example'.
Firstly i want to blind this message,later encode,unblind, and finally decode this message.
Im new to this subject.开发者_开发问答How can i do these things in java .Is there a library of java about this subject.Can you give me links about this.I
I don't know what 'blinding' is, but a reasonable starting point for Java crypto is bouncy castle, or the java.com tutorial on JCE.
http://download.oracle.com/javase/6/docs/technotes/guides/security/crypto/CryptoSpec.html#SimpleEncrEx looks like a reasonable starting example for how to do some basic (symmetric) encryption in Java.
精彩评论