在Objective-C中生成SHA256哈希

时间:2013-05-31 21:07:35

标签: objective-c macos passwords sha256 password-hash

所以我需要在Objective-C中生成一个Sha256密码,并且无法弄清楚我的生活怎么做!有什么容易的,我只是缺席了吗?

我已经尝试实现以下方法(这是为iPhone编写的,但我想它可能是跨平台工作的,就像一些Objective-C代码那样)

-(NSString*)sha256HashFor:(NSString*)input
{
    const char* str = [input UTF8String];
    unsigned char result[CC_SHA256_DIGEST_LENGTH];
    CC_SHA256(str, strlen(str), result);

    NSMutableString *ret = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH*2];
    for(int i = 0; i<CC_SHA256_DIGEST_LENGTH; i++)
    {
        [ret appendFormat:@"%02x",result[i]];
    }
    return ret;
}

但是,这只是吐出有关CC_SHA256_DIGEST_LENGTH是未声明标识符的错误。

5 个答案:

答案 0 :(得分:18)

您需要包含相应的头文件:

#include <CommonCrypto/CommonDigest.h>

根据Cryptographic Services documentation,这应该适用于iOS和OS X.

  

在OS X v10.5及更高版本以及iOS 5.0及更高版本中,Common Crypto为加密和解密提供低级别C支持。 Common Crypto并不像Security Transforms那样简单,但提供了更广泛的功能,包括其他散列方案,密码模式等。

答案 1 :(得分:8)

#import <CommonCrypto/CommonDigest.h>
  

Objective-C:SHA256只有两行:

+ (NSData *)doSha256:(NSData *)dataIn {
    NSMutableData *macOut = [NSMutableData dataWithLength:CC_SHA256_DIGEST_LENGTH];
    CC_SHA256(dataIn.bytes, dataIn.length, macOut.mutableBytes);
    return macOut;
}
  

Swift 3

func sha256Hex(string: String) -> String? {
    guard let messageData = string.data(using:String.Encoding.utf8) else { return nil }
    var digestData = Data(count: Int(CC_SHA256_DIGEST_LENGTH))

    _ = digestData.withUnsafeMutableBytes {digestBytes in
        messageData.withUnsafeBytes {messageBytes in
            CC_SHA256(messageBytes, CC_LONG(messageData.count), digestBytes)
        }
    }

    return digestData.map { String(format: "%02hhx", $0) }.joined()
}

//测试

let sha256HexString = sha256Hex(string:"Hello")
print("sha256HexString: \(sha256HexString!)")
  

sha256HexString:&#34; 185f8db32271fe25f561a6fc938b2e264306ec304eda518007d1764826381969&#34;

答案 2 :(得分:1)

查看NSHash可可豆荚。它有许多不同的散列方法,包括SHA256。

https://github.com/jerolimov/NSHash

答案 3 :(得分:1)

Objective-C方法,其输出与random site online的输出相匹配

-(NSString*)sha256HashForText:(NSString*)text {
    const char* utf8chars = [text UTF8String];
    unsigned char result[CC_SHA256_DIGEST_LENGTH];
    CC_SHA256(utf8chars, (CC_LONG)strlen(utf8chars), result);

    NSMutableString *ret = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH*2];
    for(int i = 0; i<CC_SHA256_DIGEST_LENGTH; i++) {
        [ret appendFormat:@"%02x",result[i]];
    }
    return ret;
}

取自this Gist

答案 4 :(得分:0)

Objective-C中@zaph答案的修改版本,其中NSString作为输入和输出:

-(NSString*)sha256HashFor:(NSString*)input
{
    NSData* data = [input dataUsingEncoding:NSUTF8StringEncoding];
    NSMutableData *sha256Data = [NSMutableData dataWithLength:CC_SHA256_DIGEST_LENGTH];
    CC_SHA256([data bytes], (CC_LONG)[data length], [sha256Data mutableBytes]);
    return [sha256Data base64EncodedStringWithOptions:0];
}