3

现在我有一个包含公钥的证书,我想在 iPhone SDK 编程中从中获取公钥,并使用公钥通过 RSA 加密字符串。我应该怎么办?

4

1 回答 1

-1
SecKeyRef publicKeyReference = NULL;
NSMutableDictionary* queryPublicKey;

SecItemCopyMatching((CFDictionaryRef)queryPublicKey, (CFTypeRef *)&publicKeyReference);

publicKeyReference - 是您的公钥表示;queryPublicKey - 是您的证书表示;SecItemCopyMatching - 允许您从证书中检索公钥的功能!

于 2010-04-12T08:39:26.387 回答