1// Copyright 2015 Keybase, Inc. All rights reserved. Use of
2// this source code is governed by the included BSD license.
3
4// +build darwin,ios
5
6package libkb
7
8import "github.com/keybase/go-keychain"
9
10func (k KeychainSecretStore) accessGroup(m MetaContext) string {
11	// GetStoredSecretAccessGroup MUST be "" for the simulator
12	return m.G().GetStoredSecretAccessGroup()
13}
14
15func (k KeychainSecretStore) synchronizable() keychain.Synchronizable {
16	return keychain.SynchronizableNo
17}
18
19func (k KeychainSecretStore) accessible() keychain.Accessible {
20	return keychain.AccessibleAfterFirstUnlockThisDeviceOnly
21}
22