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

ios - 多点连接框架中使用的加密?


                                            <p><p>嘿,我在 ios 中为聊天应用程序使用多点连接框架。这个框架是否支持任何加密。我想知道这个框架中使用的加密,比如 AES 或 RSA 加密系统?
我的发现或研究:<br/>
1. <a href="https://datatheorem.github.io/documents/BH_MultipeerConnectivity.pdf" rel="noreferrer noopener nofollow">https://datatheorem.github.io/documents/BH_MultipeerConnectivity.pdf</a>
2. <a href="https://nabla-c0d3.github.io/blog/2014/08/20/multipeer-connectivity-follow-up/" rel="noreferrer noopener nofollow">https://nabla-c0d3.github.io/blog/2014/08/20/multipeer-connectivity-follow-up/</a> </p>

<p>请发表你的建议</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>是的,<strong>MCSession.h</strong> 类中有一个<strong>加密</strong>选项</p>

<pre><code> // Encryption preference.
typedef NS_ENUM (NSInteger, MCEncryptionPreference) {
MCEncryptionOptional = 0,                   // session preferred encryption but will accept unencrypted connections
MCEncryptionRequired = 1,                   // session requires encryption
MCEncryptionNone = 2,                     // session should not be encrypted
} NS_ENUM_AVAILABLE (10_10, 7_0);
</code></pre>

<p>调用这个方法:</p>

<pre><code>- (instancetype)initWithPeer:(MCPeerID *)myPeerID
      securityIdentity:(nullable NSArray *)identity
    encryptionPreference:(MCEncryptionPreference)encryptionPreference NS_DESIGNATED_INITIALIZER;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 多点连接框架中使用的加密?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33500496/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33500496/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 多点连接框架中使用的加密?