我一直在使用https://github.com/ideawu/Objective-C-RSA/blob/master/RSA.m进行RSA加密,但是在iOS 9中,kefRef被返回为零,使用iOS 8可以正常工作。应该做什么更改?
SecKeyRef keyRef = nil;
status = SecItemCopyMatching((__bridge CFDictionaryRef)privateKey,(CFTypeRef *)&keyRef);
if(status != noErr){
return nil;
}
return keyRef;发布于 2015-10-08 09:46:48
https://stackoverflow.com/questions/32945660
复制相似问题