前のセクションでは、いくつかの暗号化クラスと復号化クラスの使用を紹介しました。これらを組み合わせて簡単なテストを実行してみましょう。
メインアクティビティ:
次のようにコードをコピーします。
パッケージcom.home.testdes;
android.os.Bundle をインポートします。
android.util.Logをインポートします。
android.app.Activityをインポートします。
public class MainActivity extends Activity {
@オーバーライド
protected void onCreate(バンドル保存インスタンス状態) {
super.onCreate(savedInstanceState);
DESUtil u = 新しい DESUtil();
String mi = u.getEnc("愛しています");
Log.i("暗号化後", mi);
文字列 ming = u.getDec(mi);
Log.i("復号化後", ming);
}
}
暗号化および復号化ツール:
次のようにコードをコピーします。
パッケージcom.home.testdes;
java.security.Keyをインポートします。
import java.security.spec.AlgorithmParameterSpec;
javax.crypto.Cipherをインポートします。
javax.crypto.SecretKeyFactoryをインポートします。
インポート javax.crypto.spec.DESKeySpec;
インポート javax.crypto.spec.IvParameterSpec;
android.util.Base64をインポートします。
/**
* DES 暗号化および復号化ツールを使用する
*
* @author 管理者
*
*/
パブリック クラス DESUtil {
private Key key;// キーのキー値
プライベートバイト[] DESkey;
プライベート バイト[] DESIV = { 0x12、0x34、0x56、0x78、(バイト) 0x90、(バイト) 0xAB、
(バイト) 0xCD、(バイト) 0xEF };
private AlgorithmParameterSpec iv = null;//暗号化アルゴリズムのパラメータ インターフェイス
パブリック DESUtil() {
試す {
this.DESkey = "abcdefghijk".getBytes("UTF-8");//キーを設定します
DESKeySpec keySpec = new DESKeySpec(DESkey);//キーパラメータを設定します
iv = new IvParameterSpec(DESIV); // ベクトルを設定します。
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");// キー ファクトリを取得します
key = keyFactory.generateSecret(keySpec);//キーオブジェクトを取得する
} catch (例外 e) {
e.printStackTrace();
}
}
/**
* 暗号化された文字列、平文入力、暗号文出力
*
* @param 入力文字列
* 暗号化される平文
* @return 暗号化された文字列
*/
public String getEnc(String inputString) {
byte[] byteMi = null;
byte[] byteMing = null;
文字列出力文字列 = "";
試す {
byteMing = inputString.getBytes("UTF-8");
byteMi = this.getEncCode(byteMing);
byte[] temp = Base64.encode(byteMi, Base64.DEFAULT);
出力文字列 = 新しい文字列(一時);
} catch (例外 e) {
} ついに {
バイトミン = null;
byteMi = null;
}
出力文字列を返します。
}
/**
* 文字列を復号し、平文を暗号文として入力して出力します
*
* @param 入力文字列
* 復号化する必要がある文字列
* @return 復号化された文字列
*/
public String getDec(String inputString) {
byte[] byteMing = null;
byte[] byteMi = null;
文字列 strMing = "";
試す {
byteMi = Base64.decode(inputString.getBytes(), Base64.DEFAULT);
byteMing = this.getDesCode(byteMi);
strMing = new String(byteMing, "UTF8");
} catch (例外 e) {
} ついに {
バイトミン = null;
byteMi = null;
}
strMing を返します。
}
/**
* 暗号化では、byte[] 平文入力と byte[] 暗号文出力を使用します。
*
* @param bt
* 暗号化するバイトコード
* @return 暗号化されたバイトコード
*/
private byte[] getEncCode(byte[] bt) {
byte[] byteFina = null;
暗号暗号。
試す {
// 暗号インスタンスを取得する
cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, key, iv);
byteFina = cipher.doFinal(bt);
} catch (例外 e) {
e.printStackTrace();
} ついに {
暗号 = null;
}
byteFina を返します。
}
/**
* 復号化では、byte[] 暗号文入力と byte[] 平文出力を使用します。
*
* @param bt
* 復号化するバイトコード
* @return 復号化されたバイトコード
*/
private byte[] getDesCode(byte[] bt) {
暗号暗号。
byte[] byteFina = null;
試す {
// 暗号インスタンスを取得する
cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, key, iv);
byteFina = cipher.doFinal(bt);
} catch (例外 e) {
e.printStackTrace();
} ついに {
暗号 = null;
}
byteFina を返します。
}
}