Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的应用程序进行基于证书的身份验证。我可以从钥匙串中获取证书,它是 DER 格式的 CFData 类型。我需要将证书 CFData 发送到服务器进行身份验证,是否可以将证书数据转换为 NSString 格式?
谢谢
将CFData引用转换为NSData然后用于base64EncodedStringWithOptions:将数据编码为字符串。
CFData
NSData
base64EncodedStringWithOptions: