比如说再做接口的时候 访问接口需要带参数但是明文不安全 如果用不可逆的加密在参数传到接口后无法解密也就无法得知参数内容接口就无法使用 所以在做接口的参数传递的时候加密参数必须要用可逆也就是可解密的方式去做 目前可逆的加密一般都是非对称的加密方式比如RSA
B. 可逆的加密算法有啥
RAS公钥算法
C. 求一个用java编写的可逆的加密算法程序,自己写的小程序也行。
public class mySecurity {
private static KeyGenerator keygen ;
private static SecretKey secretKey;
private static Cipher cipher;
private static mySecurity security = null;
private mySecurity(){
}
public static mySecurity getInstance() throws Exception{
if(security == null){
security = new mySecurity();
keygen = KeyGenerator.getInstance("AES");
secretKey = keygen.generateKey();
cipher =Cipher.getInstance("AES");
}
return security;
}
//加密
public String encrypt(String str) throws Exception{
cipher.init(Cipher.ENCRYPT_MODE,secretKey);
byte [] src = str.getBytes(); byte [] enc = cipher.doFinal(src);
return parseByte2HexStr(enc); }
//解密
public String decrypt(String str) throws Exception{
cipher.init(Cipher.DECRYPT_MODE,secretKey);
byte[] enc = parseHexStr2Byte(str); byte [] dec = cipher.doFinal(enc);
return new String(dec); }
/**将16进制转换为二进制
* @param hexStr
* @return
*/
public static byte[] parseHexStr2Byte(String hexStr) {
if (hexStr.length() < 1)
return null;
byte[] result = new byte[hexStr.length()/2];
for (int i = 0;i< hexStr.length()/2; i++) {
int high = Integer.parseInt(hexStr.substring(i*2, i*2+1), 16);
int low = Integer.parseInt(hexStr.substring(i*2+1, i*2+2), 16);
result[i] = (byte) (high * 16 + low);
}
return result;
}
/**将二进制转换成16进制
* @param buf
* @return
*/
public static String parseByte2HexStr(byte buf[]) {
StringBuffer sb = new StringBuffer();
for (int i = 0; i < buf.length; i++) {
String hex = Integer.toHexString(buf[i] & 0xFF);
if (hex.length() == 1) {
hex = '0' + hex;
}
sb.append(hex.toUpperCase());
}
return sb.toString();
}
public static void main(String[] args) throws Exception{
String str = "abc haha 我";
String ss = mySecurity.getInstance().encrypt(str) ;
System.out.println(ss);
System.out.println(mySecurity.getInstance().decrypt(ss));
}
}
D. 可逆矩阵的计算公式
计算公式:A^(-1)=(︱A︱)^(-1) A﹡(方阵A的行列式的倒数乘以A的伴随矩阵)。
这个公式在矩阵A的阶数很低的时候(比如不超过4阶)效率还是比较高的,但是对于阶数非常高的矩阵,通常我们通过对2n*n阶矩阵[A In]进行行初等变换,变换成矩阵[In B],于是B就是A的逆矩阵。
矩阵的乘法满足以下运算律:
结合律:的行向量(或列向量)线性无关。
假设M是一个m×n阶矩阵,其中的元素全部属于域K,也就是实数域或复数域。如此则存在一个分解,其中U是m×m阶酉矩阵;Σ是m×n阶实数对角矩阵;而V*,即V的共轭转置,是n×n阶酉矩阵。
这样的分解就称作M的奇异值分解 。Σ对角线上的元素Σi,i即为M的奇异值。常见的做法是将奇异值由大而小排列。如此Σ便能由M唯一确定了。
E. 网络上可逆、加密、压缩、算法一般有哪些
无损压缩有:LZ77,LZ78,LZW, FLAC, WavPack, Monkey's Audio, PNG, Tiff
有损的有:mp3, mpeg1/2/4, h.264, h.265, avi, rm,