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.
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
bạn có tìm thấy giải pháp nào cho vấn đề này không? – Gunhan