菜鸟教程小白 发表于 2022-12-13 11:33:48

ios - Apple FairPlay key 服务器模块实现


                                            <p><分区>
            <aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
      <div class="d-flex fd-column fw-nowrap">
            <div class="d-flex fw-nowrap">
                <div class="flex--item wmn0 fl1 lh-lg">
                  <div class="flex--item fl1 lh-lg">
                        <b>关闭。</b>这个问题不符合<a href="https://stackoverflow.com/help/closed-questions" rel="noreferrer noopener nofollow">Stack Overflow guidelines</a> .它目前不接受答案。
                        
                  <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>引用中最麻烦的部分是它缺少私钥,他们说只是将其放入某个数组中。问题: key 在 pem 文件中并具有文本表示。
经过一些测试后,我能够克服这个问题。
我获取了相关的 .pem 文件,该文件以“-----BEGIN RSA PRIVATE KEY-----”行开头,然后是 base64 编码 key 并以“-----END RSA PRIVATE KEY---”结尾--"所以我只获取了所有数据(包括开始和结束行)并将其转换为字节表示。
我使用了以下python代码
<code>file = open("dev_private_key.pem", "r")
a = file.read()
b = 新字节数组(a)
对于 b 中的 ch:
sys.stdout.write(str(ch)+",")
</code>
然后我把这个输出粘贴到 SKDServerUtils.c 中所需的行中,所以它看起来像这样
static const UInt8 pKeyPem[] = {45,45,45,45,45....}</p>

<p>全部重新编译,对我来说效果很好。</p>

<p>希望这对以后的人有帮助,因为我找不到关于这个特定部分的任何更好的文档。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Apple FairPlaykey 服务器模块实现,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32274353/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32274353/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Apple FairPlay key 服务器模块实现