I have to read crypt video on Android device.
I create a localhost server using http://elonen.iki.fi/code/nanohttpd/ which permits in very simple way to achieve this goal.
I achieve with it to read not crypt video but I am sticked to read the crypt video. (I don't have any trouble to crypt the video, just to read it)
I try the following :
1- To crypt video using a simple "AES", and when I try to read it with my server, I see the streaming starts (I see my server answering 3 times with various range) After 3 times the player says that is impossible to read the video.
2- To crypt video using "AES/CTR/NoPadding" : in that case, I see my server that delivers the first range and that's running again and again and again but no video display.
I try with CTR16 to get block of 16 bits, and to read them with a bufer of 32ko. That does not work.
(PS : I have no problem to uncrypt picture with my method)
Here my crypt method :
public static InputStream getUncryptInputStream(InputStream is, String pass, final long dataLen) throws Exception{
SecretKeySpec key = new SecretKeySpec(getRawKey(pass.getBytes()), "AES");
Cipher mCipher = Cipher.getInstance("AES/CTR/NoPadding");
mCipher.init(Cipher.DECRYPT_MODE, key, ivSpec);
if(dataLen==-1){
return new CipherInputStream(is, mCipher);
}else{
return new CipherInputStreamWithDataLen(is, mCipher, dataLen);
}
}
public static OutputStream getCryptOutputStream(OutputStream os, String pass) throws Exception{
SecretKeySpec key = new SecretKeySpec(getRawKey(pass.getBytes()), "AES");
Cipher mCipher = Cipher.getInstance("AES/CTR/NoPadding");
mCipher.init(Cipher.ENCRYPT_MODE, key, ivSpec);
return new CipherOutputStream(os, mCipher);
}
private static byte[] getRawKey(byte[] seed) throws Exception {
KeyGenerator kgen = KeyGenerator.getInstance("AES");
SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
sr.setSeed(seed);
kgen.init(128, sr); // 192 and 256 bits may not be available
SecretKey skey = kgen.generateKey();
byte[] raw = skey.getEncoded();
return raw;
}
and the CipherInputStreamWithData I create because the method available always return 0 with the normal CipherInputStreamWithData :
import java.io.IOException; import java.io.InputStream;
import javax.crypto.Cipher; import javax.crypto.CipherInputStream;
public class CipherInputStreamWithDataLen extends CipherInputStream{
int dataLen;
public CipherInputStreamWithDataLen(InputStream is, Cipher mCipher, long dataLen) {
super(is, mCipher);
this.dataLen = (int)dataLen;
// TODO Auto-generated constructor stub
}
public int available() throws IOException{
return dataLen;
}
}