gpt4 book ai didi

objective-c - Objective C AES 加密等同于java版本

转载 作者:行者123 更新时间:2023-11-29 04:14:07 25 4
gpt4 key购买 nike

我有java代码来加密密码,

public static String encryptToString(String content,String password) throws IOException {
return parseByte2HexStr(encrypt(content, password));
}
private static byte[] encrypt(String content, String password) {
try {
KeyGenerator kgen = KeyGenerator.getInstance("AES");
SecureRandom secureRandom = SecureRandom.getInstance("SHA1PRNG");
secureRandom.setSeed(password.getBytes());
kgen.init(128, secureRandom);
SecretKey secretKey = kgen.generateKey();
byte[] enCodeFormat = secretKey.getEncoded();
SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES");
Cipher cipher = Cipher.getInstance("AES");
byte[] byteContent = content.getBytes("utf-8");
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] result = cipher.doFinal(byteContent);
return result;
} catch (Exception e) {
log.error(e.getMessage(),e);
}
return null;
}
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();
}

现在我需要用 Objective-C 对其进行加密/解密,我做了很多搜索,但没有任何方法会生成相同的加密输出。
objective-c版本代码等于java代码是多少?

测试用例:encryptToString("test","password") => DA180930496EC69BFEBA923B7311037A

最佳答案

我相信这个问题的答案就是您正在寻找的:Any cocoa source code for AES encryption decryption?

我改编了某人作为答案发布的函数:https://gist.github.com/4335132

使用:

NSString *content = @"test";
NSData *dataToEncrypt = [content dataUsingEncoding:NSUTF8StringEncoding];
NSData *data = [dataToEncrypt AES128EncryptWithKey:@"password"];
NSString *hex = [data hexString];

这并不完全相同,因为您的 Java 代码不使用密码本身进行加密,而是使用它来为随机数生成器提供种子。但我认为这应该仍然适合您正在尝试做的事情。

关于objective-c - Objective C AES 加密等同于java版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13946724/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com