-
-
[求助]JAVA 加密代码转C++
-
发表于:
2015-9-24 13:44
6632
-
JAVA中的代码:
PBEKeySpec mPBEKeySpec = new PBEKeySpec(paramArrayOfChar);
SecretKey mSecretKey= SecretKeyFactory.getInstance("PBEWithMD5AndDES").generateSecret(mPBEKeySpec);
Cipher localCipher = Cipher.getInstance("PBEWithMD5AndDES/CBC/PKCS5Padding");
localCipher.init(2, mSecretKey, new PBEParameterSpec(paramArrayOfByte2, 64));
return new String(localCipher.doFinal(paramArrayOfByte1), "utf-8");
C++ 中没有PBEKeySpec 、SecretKey 、SecretKeyFactory这种类库。
还有像Cipher (PBEWithMD5AndDES/CBC/PKCS5Padding)这种模式。
如果强行 要转成C++的,用cyptopp 或者oppenssl 这种库 能转么? 有大神么
[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)