本文介紹了如何將AES CCM與BouncyCastle JCE提供程序一起使用-CCM參數(shù)的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
是否可以使用JCE執(zhí)行CCM?
我在互聯(lián)網(wǎng)上看到了很多使用非JCE bouncyCastle類的例子。具體地說,我看到它們調(diào)用init,傳入一個CCMParameters對象。
問題是,此CCM參數(shù)對象不是從算法參數(shù)或算法參數(shù)規(guī)范派生的,因此似乎無法將其傳遞給Cipher.init()(在使用Cipher.getInstance(“aes/ccm/NoPadding.”)獲得Cipher對象之后)。
如何完成此操作?
aes
Hi這里是推薦答案-CCM算法的示例代碼
其中所有常用名稱都是輸入?yún)?shù)。
注意十六進(jìn)制數(shù)據(jù)字節(jié)和所有其他內(nèi)容
import org.bouncycastle.crypto.BlockCipher;
import org.bouncycastle.crypto.InvalidCipherTextException;
import org.bouncycastle.crypto.engines.AESEngine;
import org.bouncycastle.crypto.modes.CCMBlockCipher;
import org.bouncycastle.crypto.params.CCMParameters;
import org.bouncycastle.crypto.params.KeyParameter;
import org.bouncycastle.util.encoders.Hex;
public class AesCcm {
public static void main(String[] args) throws IllegalStateException, InvalidCipherTextException {
int macSize = 125;
byte[] key = new byte[32];
byte[] keybyte = "test123".getBytes();
byte[] inputNouc = "abcdefghijklm".getBytes();
for (int I = 0; I < keybyte.length; I++) {
key[I] = keybyte[I];
}
// Input data in HEX format
String input = "ed88fe7b95fa0ffa190b7ab33933fa";
byte[] inputData= Hex.decode(input);
BlockCipher engine = new AESEngine();
CCMParameters params = new CCMParameters(new KeyParameter(key),
macSize, inputNouc, null);
CCMBlockCipher cipher = new CCMBlockCipher(engine);
cipher.init(true, params);
byte[] outputText = new byte[cipher.getOutputSize(inputData.length)];
int outputLen = cipher.processBytes(inputData, 0, inputData.length,
outputText , 0);
cipher.doFinal(outputText, outputLen);
// outputText and mac are in bytes
System.out.println(outputText);
System.out.println(cipher.getMac());
}
}
這篇關(guān)于如何將AES CCM與BouncyCastle JCE提供程序一起使用-CCM參數(shù)的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,