Recent content by Snehal Mahajan

  1. Snehal Mahajan

    Video Encryption Decryption takes too much time

    It takes 10 min for processing. I hope it should be 2 to 3 seconds because user should not frustrated for that timing is important.
  2. Snehal Mahajan

    Video Encryption Decryption takes too much time

    This is code for encryption of video FileInputStream fis = new FileInputStream(extStore+"/digilearn/try.mp4"); FileOutputStream fos = new FileOutputStream(extStore+"/digilearn/enctry.mp4"); SecretKeySpec sks = new SecretKeySpec("MyDifficultPassw".getBytes(), "AES"); Cipher cipher =...