菜鸟教程小白 发表于 2022-12-12 16:39:56

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


                                            <p><p>在 iOS 7 中,应用程序可以读取所谓的“大统一收据”(WWDC 2013,presentation 308),以前只能在 Mac OS X 上使用。它包含有关用户购买应用程序的所有信息,应用内购买等,并且它是加密的,因此用户无法创建假的。 <a href="https://developer.apple.com/library/ios/releasenotes/General/ValidateAppStoreReceipt/Chapters/ValidateLocally.html#//apple_ref/doc/uid/TP40010573-CH1-SW2" rel="noreferrer noopener nofollow">Apple has a tutorial on how to implement it,</a>但不完全清楚从哪里获取一些数据。</p>

<p>教程中有示例代码:</p>

<pre><code>/* 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();
</code></pre>

<p>我们如何在 iOS 上加载这些内容? <a href="https://github.com/roddi/ValidateStoreReceipt/blob/master/validatereceipt.h" rel="noreferrer noopener nofollow">There is a Github project called &#34;ValidateStoreReceipt&#34; which has some sample code</a> , 但它是为 OS X 量身定做的。OSX 可以访问 OpenSSL,而在 iOS 上则首选使用 Security.h 模块。 “大统一收据”的最佳实现方式是什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>Apple 不再提供 OpenSSL。在 iOS 和 OSX 中下载源代码并构建 OpenSSL。</p>

<p>Apple 表示他们提供 OpenSSL 的问题是版本之间不兼容,因此新版本与旧版本不兼容,这有时会破坏应用程序。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 上实现&#34;grand unified receipt&#34;,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20173491/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20173491/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 上实现 &#34;grand unified receipt&#34;