tu.crossing.JavaCryptographicArchitecture.3.1.2.source-code.IvParameterSpec.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 javax.crypto.spec.IvParameterSpec
OBJECTS
byte[] iv;
int offset;
int len;
EVENTS
c1: IvParameterSpec(iv);
c2: IvParameterSpec(iv, offset, len);
Con := c1 | c2;
ORDER
Con
CONSTRAINTS
length[iv] >= offset + len;
offset >= 0;
len > 0;
REQUIRES
randomized[iv];
ENSURES
preparedIV[this];