【发布时间】:2017-03-24 10:17:41
【问题描述】:
import javax.crypto.Mac;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
/**
* Class to calculate CMAC which is used as PRF in KDF for SCP03 PseudoRandom CardChallenge generation
*/
public class Cmac {
/**
* Tested CMAC against official TestVectors ({@link 'http://csrc.nist.gov/publications/nistpubs/800-38B/SP_800-38B.pdf'})
* CMAC used as PRF in KDF
*/
public static byte[] calc(byte[] keyBytes, byte[] data) throws ApduGeneratorException {
try {
SecretKey key = new SecretKeySpec(keyBytes, 0, keyBytes.length, "AES");
Mac mac = Mac.getInstance("CmacAES", BouncyCastleProvider.PROVIDER_NAME);
mac.init(key);
byte[] hash = mac.doFinal(data);
return hash;
} catch (Exception e) {
throw new ApduGeneratorException(e.getMessage());
}
}
}
这段代码导致了这样的异常:
java.security.NoSuchAlgorithmException: no such algorithm: CmacAES for provider BC
at sun.security.jca.GetInstance.getService(Unknown Source)
at javax.crypto.JceSecurity.getInstance(JceSecurity.java:97)
at javax.crypto.Mac.getInstance(Mac.java:222)
at com.quantag.globalplatform.sm.Cmac.calc(Cmac.java:23)
at app.executors.LoadAppletExecutor$1.call(LoadAppletExecutor.java:102)
at app.executors.LoadAppletExecutor$1.call(LoadAppletExecutor.java:1)
at javafx.concurrent.Task$TaskCallable.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at javafx.concurrent.Service.lambda$null$492(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at javafx.concurrent.Service.lambda$executeTask$493(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
我已经安装了JCE unlimited 8 并添加了:security.provider.N=org.bouncycastle.jce.provider.BouncyCastleProvider
根据Provider Installation docs。
但我仍然收到此异常。我错过了什么?
我正在使用这样的 BC 版本:bcprov-jdk15on-154.jar。
【问题讨论】:
-
请提及 bouncycastle 版本
-
或者你可以直接实例化它,假设它在那里。 stackoverflow.com/questions/28516804/…
-
如果你想运行这个测试。因为assert而失败,但是没有异常。
标签: java bouncycastle jce