According to current README.md, the simulator supports 3.0.5. However, when I try to use this mode, CryptoException.NO_SUCH_ALGORITHM is thrown. It has reason code set to CryptoException.NO_SUCH_ALGORITHM.
AEADCipher c = (AEADCipher) AEADCipher.getInstance(AEADCipher.ALG_AES_GCM, false);
Hello,
support for AES-GCM (
ALG_AES_GCM
) was introduced in Java Card Platform, Classic Edition 3.0.5 injavacardx.crypto.AEADCipher
class.According to current README.md, the simulator supports 3.0.5. However, when I try to use this mode,
CryptoException.NO_SUCH_ALGORITHM
is thrown. It hasreason
code set toCryptoException.NO_SUCH_ALGORITHM
.Based on observation of simulator's
CipherProxy
class, I assume that the simulator currently does not fully supportALG_AES_GCM
from 3.0.5. Is that right?Is there a list of currently unsupported features concerning 3.0.5 (3.0.5u3)? Thanks.