我一直在尝试使用exoplayer在我的服务器上传输加密视频。我想出了有关自定义数据源的所有内容,它正在流式传输未加密的其他在线视频但是当我尝试解密视频时我收到错误我只知道密码字符串(这是“abc123”我也有md5这个)我不知道我应该如何将它完全转换为密钥,然后将其与我的密码一起使用错误1)当我使用密码字符串作为密钥时,我得到不支持的密钥大小错误,2)当我使用md5作为键我得到UnrecognizedInputFormatException
String sb="abc123";
byte []b=sb.getBytes();
mSecretKeySpec = new SecretKeySpec(b,"AES");
mIvParameterSpec = new IvParameterSpec("abc123".getBytes());
try {
mCipher = Cipher.getInstance("AES/CBC/NoPadding");
mCipher.init(Cipher.DECRYPT_MODE, mSecretKeySpec,mIvParameterSpec);
} catch (Exception e) {
System.out.println(e.getMessage()+e.getCause()+"fuckeddd");
e.printStackTrace();
}
“abc123”不是有效的加密密钥。加密密钥是16字节的二进制值。