0

我有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

4

1 回答 1

1

我相信这个问题的答案就是您正在寻找的:任何用于 AES 加密解密的可可源代码?

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

要使用:

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

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

于 2012-12-19T06:43:33.110 回答