ios - 无法访问保存在 Xamarin.iOS 钥匙串(keychain)值中
<p><p>在我的应用程序中,我有两种方法可以帮助我从钥匙串(keychain)中保存和获取值</p>
<pre><code>public static void StoreKeysInKeychain(string key, string value)
{
DeleteKeyFromKeychain(key);
var s = new SecRecord(SecKind.GenericPassword)
{
ValueData = NSData.FromString(value),
Generic = NSData.FromString(key)
};
SecKeyChain.Add(s);
Console.WriteLine(GetRecordsFromKeychain(key));
}
public static string GetRecordsFromKeychain(string key)
{
SecStatusCode res;
var rec = new SecRecord(SecKind.GenericPassword)
{
Generic = NSData.FromString(key)
};
var match = SecKeyChain.QueryAsRecord(rec, out res);
if (match != null)
return match.ValueData.ToString();
return "Error";
}
</code></pre>
<p>我在那里保存了两个值,出于某种原因,当我尝试获取其中任何一个时,我得到的是“错误”字符串而不是值。相同的代码以前没有任何问题,但后来我添加了另一个参数来存储在钥匙串(keychain)中并重命名了两个</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果您的目标是 iOS 10+,请确保您正在检查 <code>SecKeyChain.Add</code> 的返回状态:</p>
<pre><code>var status = SecKeyChain.Add(s);
if (status == SecStatusCode.Success)
Console.WriteLine(GetRecordsFromKeychain(key));
else
Console.WriteLine(status);
</code></pre>
<p>如果您收到 <code>-34018</code>,则需要在您的 <code>Entitlements.plist</code> 中启用 KeyChain 访问:</p>
<p> <a href="/image/yTFy0.png" rel="noreferrer noopener nofollow"><img src="/image/yTFy0.png" alt="enter image description here"/></a> </p>
<p>然后确保将 <code>Entitlements.plist</code> 分配给项目 <code>Build</code>/<code>iOS Bundle Signing 中的 <code>Custom Entitlements</code> </code>:</p>
<p> <a href="/image/11YIV.png" rel="noreferrer noopener nofollow"><img src="/image/11YIV.png" alt="enter image description here"/></a> </p></p>
<p style="font-size: 20px;">关于ios - 无法访问保存在 Xamarin.iOS 钥匙串(keychain)值中,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/41336016/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/41336016/
</a>
</p>
页:
[1]