web-dev-qa-db-ja.com

弾む城を使用してJava)でxmlファイルを暗号化する例

Java bouncy Castleを使用して)でファイルを暗号化する方法の例を誰かに見せてもらえますか(またはリンクを提供できますか?bouncycastle.orgを調べましたが、APIのドキュメントが見つかりません。使用するクラスを知っているだけでも、始めるのに大いに役立ちます。

12
Lee Warner

どのタイプの暗号化を実行しますか?パスワードベース(PBE)、対称、非対称? Cipher の構成方法がすべてです。

BouncyCastle固有のAPIを使用する必要はなく、提供されるアルゴリズムのみを使用する必要があります。これは、BouncyCastlePBE暗号を使用して文字列を暗号化する例です。

import Java.security.SecureRandom;
import Java.security.Security;

import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.PBEKeySpec;

import org.bouncycastle.jce.provider.BouncyCastleProvider;

public class PBE {

    private static final String salt = "A long, but constant phrase that will be used each time as the salt.";
    private static final int iterations = 2000;
    private static final int keyLength = 256;
    private static final SecureRandom random = new SecureRandom();

    public static void main(String [] args) throws Exception {
        Security.insertProviderAt(new BouncyCastleProvider(), 1);

        String passphrase = "The quick brown fox jumped over the lazy brown dog";
        String plaintext = "hello world";
        byte [] ciphertext = encrypt(passphrase, plaintext);
        String recoveredPlaintext = decrypt(passphrase, ciphertext);

        System.out.println(recoveredPlaintext);
    }

    private static byte [] encrypt(String passphrase, String plaintext) throws Exception {
        SecretKey key = generateKey(passphrase);

        Cipher cipher = Cipher.getInstance("AES/CTR/NOPADDING");
        cipher.init(Cipher.ENCRYPT_MODE, key, generateIV(cipher), random);
        return cipher.doFinal(plaintext.getBytes());
    }

    private static String decrypt(String passphrase, byte [] ciphertext) throws Exception {
        SecretKey key = generateKey(passphrase);

        Cipher cipher = Cipher.getInstance("AES/CTR/NOPADDING");
        cipher.init(Cipher.DECRYPT_MODE, key, generateIV(cipher), random);
        return new String(cipher.doFinal(ciphertext));
    }

    private static SecretKey generateKey(String passphrase) throws Exception {
        PBEKeySpec keySpec = new PBEKeySpec(passphrase.toCharArray(), salt.getBytes(), iterations, keyLength);
        SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("PBEWITHSHA256AND256BITAES-CBC-BC");
        return keyFactory.generateSecret(keySpec);
    }

    private static IvParameterSpec generateIV(Cipher cipher) throws Exception {
        byte [] ivBytes = new byte[cipher.getBlockSize()];
        random.nextBytes(ivBytes);
        return new IvParameterSpec(ivBytes);
    }

}
20
Kevin

Java doc at http://bouncycastle.org/docs/docs1.6/index.html を表示できます。

このページから例をダウンロードできます: http://eu.wiley.com/WileyCDA/WileyTitle/productCd-0764596330,descCd-DOWNLOAD.html

3
Robert Christie

バウンシーキャッスルを見つけるのに最適な場所Javaコード例は、バウンシーキャッスルのテストスイートのテストケースを調べることです バウンシーキャッスル最新リリースJava

これらのテストスイートには、すぐに使用できる非推奨のコードが含まれています

1
ChatC

BountyCastleを使用する特別な理由がない場合は、Java組み込みの暗号化サポートといくつかのコード例 ここ )に関する優れたチュートリアルと背景情報を見つけることができます。 =。

1
jarnbjo

これはあなたの質問に対する間接的な答えですが、暗号化を処理するためにjasyptを使用すると便利な場合があります。

jasyptを使用してファイルを暗号化する方法の例を次に示します。 http://www.jasypt.org/encrypting-configuration.html

そして、ジャシプトのプロバイダーとして弾力がある城を構成する方法は次のとおりです: http://www.jasypt.org/bouncy-castle.html

0