在 iOS 7 中,应用程序可以读取所谓的“大统一收据”(WWDC 2013,presentation 308),以前只能在 Mac OS X 上使用。它包含有关用户购买应用程序的所有信息,应用内购买等,并且它是加密的,因此用户无法创建假的。 Apple has a tutorial on how to implement it,但不完全清楚从哪里获取一些数据。
教程中有示例代码:
/* The PKCS #7 container (the receipt) and the output of the verification. */
BIO *b_p7;
PKCS7 *p7;
/* The Apple root certificate, as raw data and in its OpenSSL representation. */
BIO *b_x509;
X509 *Apple;
/* The root certificate for chain-of-trust verification. */
X509_STORE *store = X509_STORE_new();
我们如何在 iOS 上加载这些内容? There is a Github project called "ValidateStoreReceipt" which has some sample code , 但它是为 OS X 量身定做的。OSX 可以访问 OpenSSL,而在 iOS 上则首选使用 Security.h 模块。 “大统一收据”的最佳实现方式是什么?
Best Answer-推荐答案 strong>
Apple 不再提供 OpenSSL。在 iOS 和 OSX 中下载源代码并构建 OpenSSL。
Apple 表示他们提供 OpenSSL 的问题是版本之间不兼容,因此新版本与旧版本不兼容,这有时会破坏应用程序。
关于ios - 在 iOS 上实现 "grand unified receipt",我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/20173491/
|