Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}

}

share|improve this question
The problem comes from the CipherInputStream. – Yop Jul 24 '12 at 12:25

1 Answer

up vote 0 down vote accepted

The problem was because of the CipherInputStream skip method.

  1. because of the cypher encryptation, you have to take care to skip untill the last cipherBlock and then decrypt the last+1 cupherblock to get the few additional bytes you need to write into your BufferedOutputStream
  2. if the value return by the "available" method from CipherInputStream is < to the number of bytes to skip, the maximum of bytes that the skip method will skip will be equal to the value return by the "available" method.

General Comment : It takes arround 10s with a large BufferedInputStream before a video starts. Some people suggests to use the NDK to code the AES in native. For my need I just code a simple XOR.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.