tu.crossing.JavaCryptographicArchitecture.3.1.2.source-code.RSAKeyGenParameterSpec.crysl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JavaCryptographicArchitecture
Show all versions of JavaCryptographicArchitecture
JavaCryptographicArchitecture CrySL ruleset
The newest version!
SPEC java.security.spec.RSAKeyGenParameterSpec
OBJECTS
int keysize;
java.math.BigInteger publicExponent;
EVENTS
c1: RSAKeyGenParameterSpec(keysize, publicExponent);
Con := c1;
ORDER
Con
CONSTRAINTS
keysize in {3072, 4096}; //BSI TR-02102-1 Recommends atleast 3000bits for keys
publicExponent in {65537};
ENSURES
preparedRSA[this];