You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static class CBC256
extends BaseBlockCipher
{
public CBC256()
{
super(192, CBCBlockCipher.newInstance(AESEngine.newInstance()), 128);
// ^^^ should be 256?
}
}
https://github.com/bcgit/bc-java/blame/d3cf02608295fc73f23ff4227a0c98e414b6e6af/prov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/AES.java#L162