All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tu.crossing.JavaCryptographicArchitecture.3.1.2.source-code.CipherInputStream.crysl Maven / Gradle / Ivy

The newest version!
SPEC javax.crypto.CipherInputStream

OBJECTS
	java.io.InputStream inputStream;
	javax.crypto.Cipher cipher;
	byte[] data;
	int offset;
	int len;
	
EVENTS
	c1: CipherInputStream(inputStream, cipher);
	Con := c1;
	
	r1: read();
	r2: read(data); 
	r3: read(data, offset, len);
	Read := r1 | r2 | r3;
	
	cl1: close();
	Close := cl1;
	
ORDER
	Con, Read+, Close

CONSTRAINTS
	length[data] >= offset + len;
	offset >= 0;
	len > 0;
	
REQUIRES
	generatedCipher[cipher];	
	
ENSURES
	cipheredInputStream[inputStream, cipher];




© 2015 - 2024 Weber Informatics LLC | Privacy Policy