无法访问保存在 Xamarin.iOS 钥匙串值中
Can't access saved in a Xamarin.iOS keychain value
在我的应用程序中,我有两种方法可以帮助我从钥匙串中保存和获取值
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";
}
我在那里保存了两个值,出于某种原因,当我尝试获取其中任何一个时,我得到的是 "Error" 字符串而不是值。相同的代码以前没有任何问题,但后来我添加了另一个参数来存储在钥匙串中并重命名了两者
如果您的目标是 iOS 10 岁以上,请确保您正在检查 SecKeyChain.Add
:
的 return 状态
var status = SecKeyChain.Add(s);
if (status == SecStatusCode.Success)
Console.WriteLine(GetRecordsFromKeychain(key));
else
Console.WriteLine(status);
如果您获得 -34018
,则需要在 Entitlements.plist
:
中启用钥匙串访问
然后确保将 Entitlements.plist
分配给项目中的 Custom Entitlements
Build
/ iOS Bundle Signing
:
在我的应用程序中,我有两种方法可以帮助我从钥匙串中保存和获取值
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";
}
我在那里保存了两个值,出于某种原因,当我尝试获取其中任何一个时,我得到的是 "Error" 字符串而不是值。相同的代码以前没有任何问题,但后来我添加了另一个参数来存储在钥匙串中并重命名了两者
如果您的目标是 iOS 10 岁以上,请确保您正在检查 SecKeyChain.Add
:
var status = SecKeyChain.Add(s);
if (status == SecStatusCode.Success)
Console.WriteLine(GetRecordsFromKeychain(key));
else
Console.WriteLine(status);
如果您获得 -34018
,则需要在 Entitlements.plist
:
然后确保将 Entitlements.plist
分配给项目中的 Custom Entitlements
Build
/ iOS Bundle Signing
: