forked from organicmaps/organicmaps-tmp
[secure-storage] [ios] Added secure storage implementation.
This commit is contained in:
parent
cccd860889
commit
8168ea1e60
1 changed files with 15 additions and 4 deletions
|
@ -1,20 +1,31 @@
|
|||
#include "platform/secure_storage.hpp"
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
namespace platform
|
||||
{
|
||||
|
||||
NSString * StorageKey(std::string const & key)
|
||||
{
|
||||
return [NSString stringWithFormat:@"Maps.me::PlatrormKey::%@", @(key.c_str())];
|
||||
}
|
||||
|
||||
void SecureStorage::Save(std::string const & key, std::string const & value)
|
||||
{
|
||||
// TODO: implement @igrechuhin
|
||||
[NSUserDefaults.standardUserDefaults setObject:@(value.c_str()) forKey:StorageKey(key)];
|
||||
}
|
||||
|
||||
bool SecureStorage::Load(std::string const & key, std::string & value)
|
||||
{
|
||||
// TODO: implement @igrechuhin
|
||||
return false;
|
||||
NSString * val = [NSUserDefaults.standardUserDefaults objectForKey:StorageKey(key)];
|
||||
if (!val)
|
||||
return false;
|
||||
value = val.UTF8String;
|
||||
return true;
|
||||
}
|
||||
|
||||
void SecureStorage::Remove(std::string const & key)
|
||||
{
|
||||
// TODO: implement @igrechuhin
|
||||
[NSUserDefaults.standardUserDefaults removeObjectForKey:StorageKey(key)];
|
||||
}
|
||||
} // namespace platform
|
||||
|
|
Loading…
Add table
Reference in a new issue