Skip to content

Instantly share code, notes, and snippets.

View usoftglobal's full-sized avatar
🏠
Working from home

cjdad.eth usoftglobal

🏠
Working from home
View GitHub Profile
@usoftglobal
usoftglobal / STD3Des.java
Created September 1, 2016 12:07 — forked from forthxu/STD3Des.java
3des加密java版和php版
// javac test3.java
// java test3
import java.security.Key;
import javax.crypto.Cipher;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESedeKeySpec;
import javax.crypto.spec.IvParameterSpec;