gpt4 book ai didi

ios - 在 iOS 上实现 "grand unified receipt"

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:38:25 27 4
gpt4 key购买 nike

在 iOS 7 中,应用程序可以读取所谓的“Grand unified receipt”(WWDC 2013,演示文稿 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 模块。实现“大统一收据”的最佳方式是什么?

最佳答案

Apple 不再提供 OpenSSL。在 iOS 和 OSX 中下载源代码并构建 OpenSSL。

Apple 表示他们提供 OpenSSL 的问题是版本之间不兼容,例如新版本与旧版本不兼容,这有时会破坏应用程序。

关于ios - 在 iOS 上实现 "grand unified receipt",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20173491/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com