2012-07-19 22 views
10

Có ví dụ nào về sử dụng ECC trong iOS không?Cách sử dụng ECC trong iOS

Tôi nhận thấy rằng kSecAttrKeyTypeEC trong tài liệu nhà phát triển Apple, nhưng tôi không thể sử dụng nó cho cặp khóa chung.

Dưới đây đang biến đổi từ ví dụ CryptoExercise

// Container dictionaries. 
NSMutableDictionary * privateKeyAttr = [[NSMutableDictionary alloc] init]; 
NSMutableDictionary * publicKeyAttr = [[NSMutableDictionary alloc] init]; 
NSMutableDictionary * keyPairAttr = [[NSMutableDictionary alloc] init]; 

// Set top level dictionary for the keypair. 
[keyPairAttr setObject:(id)kSecAttrKeyTypeEC forKey:(id)kSecAttrKeyType]; 
[keyPairAttr setObject:[NSNumber numberWithUnsignedInteger:keySize] forKey:(id)kSecAttrKeySizeInBits]; 

// Set the private key dictionary. 
[privateKeyAttr setObject:[NSNumber numberWithBool:YES] forKey:(id)kSecAttrIsPermanent]; 
[privateKeyAttr setObject:privateTag forKey:(id)kSecAttrApplicationTag]; 
// See SecKey.h to set other flag values. 

// Set the public key dictionary. 
[publicKeyAttr setObject:[NSNumber numberWithBool:YES] forKey:(id)kSecAttrIsPermanent]; 
[publicKeyAttr setObject:publicTag forKey:(id)kSecAttrApplicationTag]; 
// See SecKey.h to set other flag values. 

// Set attributes to top level dictionary. 
[keyPairAttr setObject:privateKeyAttr forKey:(id)kSecPrivateKeyAttrs]; 
[keyPairAttr setObject:publicKeyAttr forKey:(id)kSecPublicKeyAttrs]; 

// SecKeyGeneratePair returns the SecKeyRefs just for educational purposes. 
sanityCheck = SecKeyGeneratePair((CFDictionaryRef)keyPairAttr, &publicKeyRef, &privateKeyRef); 
LOGGING_FACILITY(sanityCheck == noErr && publicKeyRef != NULL && privateKeyRef != NULL, @"Something really bad went wrong with generating the key pair."); 

Các sanityCheck luôn luôn trả -50 có nghĩa là 'errSecParam'.

Tôi thực sự không biết cách sử dụng nó, cảm ơn bạn đã đọc.

+1

Mã được chuyển khi khóa = 256, nhưng một vấn đề khác là khi tôi sử dụng SecKeyRawSign, nó trả về -1 và tôi không thể tìm thấy mô tả cho giá trị trả về -1, là bất kỳ ai đáp ứng điều này vấn đề? – Cylon

+0

bạn có tìm thấy giải pháp nào cho vấn đề này không? – Gunhan

Trả lời

1
NSDictionary *parameters = @{ 
          (__bridge id)kSecAttrKeyType: (__bridge id)kSecAttrKeyTypeEC, 
          (__bridge id)kSecAttrKeySizeInBits: @256, 
          (__bridge id)kSecPrivateKeyAttrs: @{ 
            (__bridge id)kSecAttrIsPermanent: @YES, 
            (__bridge id)kSecAttrApplicationTag: [@"my.key.tag" dataUsingEncoding:NSUTF8StringEncoding], 
            }, 
          (__bridge id)kSecPublicKeyAttrs: @{ 
            (__bridge id)kSecAttrIsPermanent: @YES, 
            (__bridge id)kSecAttrApplicationTag: [@"my.key.pubtag" dataUsingEncoding:NSUTF8StringEncoding], 
            } 
          }; 

SecKeyRef publicKey, privateKey; 
OSStatus status = SecKeyGeneratePair((__bridge CFDictionaryRef)parameters, &publicKey, &privateKey); 

Công trình này, hãy kiểm tra kỹ thông số kích thước khóa của bạn.

Chỉ cần lưu ý, hiện tại, khóa EC chỉ có thể được sử dụng để ký/xác minh dữ liệu. Mã hóa/giải mã trả về errSecUnimplemented = -4.

+0

Vui lòng [bugreport] (http://bugreport.apple.com). Apple là con đường phía sau cung cấp khả năng mã hóa cho iOS. – zaph