keychain Questions

1

Here's the workflow from iOS that I'm trying to achieve on Android: User starts app for the first time and Logs in successfully with credentials (sent to API for validation). Prompt shows asking ...
Blearyeyed asked 24/12, 2015 at 6:19

4

Is there an equivalent to iOS's Keychain on Android? My understanding of the Preferences API is that it is not encrypted. For my application it doesn't matter whether these credentials are persiste...
Brighten asked 4/2, 2011 at 12:7

3

Solved

Is it possible to access saved passwords that a user has submitted in Safari from the iOS keychain? https://developer.apple.com/documentation/security/keychain_services I would like to use it to ...
Joubert asked 8/9, 2011 at 20:1

4

Solved

After extensive googling I haven't managed to find an answer to this question1, which is surprising, since `security through obscurity' isn't really security at all... Is there a reliable source o...
Ottinger asked 10/6, 2011 at 23:0

3

Solved

I have observed behavior of app in iOS 10.2.1 device and iOS 10.3 beta 3 device for https://developer.apple.com/library/content/samplecode/GenericKeychain/Introduction/Intro.html Keychain data is ...
Curium asked 24/2, 2017 at 5:41

6

Solved

I am using SecItemCopyMatching to fetch a keychain item protected by Touch ID. However, if Touch ID unlocking fails (or the user selects "Enter Passcode"), I want to present my own PIN-entry UI. ...
Intersect asked 23/1, 2015 at 10:50

1

Solved

I'm importing a PEM file containing public and private keys for my code signing identity with the following command: security import "${PEM_FILE}" -k ~/Library/Keychains/login.keychain -T /usr/bin...
Dustproof asked 24/3, 2017 at 14:50

3

Solved

There are several similar questions here, but none could answer my basic question: Is it possible to have two separate developer certificates in the keychain and two corresponding distribution pro...

2

Solved

I use Chrome in macOS Sierra 10.12.3. I guess I have already set up ssl for localhost long time ago. Now, both http://localhost/ and https://localhost/ in Chrome return the list of folders under lo...
Interfaith asked 8/3, 2017 at 0:42

2

We need to uniquely identify the device and it has to be same across installs (reinstall). We have been using identifier stored in keychain till now so it persists across installs. Now with 10.3 be...
Christalchristalle asked 8/3, 2017 at 13:34

1

Solved

I am storing username and password of my application in iOS keychain. I am developing the application using Appcelerator and am using the following module. Through the API, I can perform all the CR...
Bryant asked 25/1, 2017 at 22:38

2

Solved

I've been googling around on how to store a password, and most of the people say that the only acceptable option is Keychain. I implemented that kind of approach, due to rush. But now I am curious ...
Adena asked 10/2, 2017 at 6:58

1

Solved

I'm working on a peace of code that should do the following: Store some data in Keychain. Get the data only if a user authenticates with Touch ID or Pass Code. I watched the Keychain and Authen...
Combs asked 29/11, 2016 at 18:57

7

Solved

I'm trying to add an item to the iOS keychain using Swift but can't figure out how to type cast properly. From WWDC 2013 session 709, given the following Objective-C code: NSData *secret = [@"top ...
Fazeli asked 9/6, 2014 at 3:29

2

Solved

I'm still in the very early stages of a game, and I am saving information using a KeyChain wrapper class someone made. I wanted to ask for some advice early on, since I have time to change my appro...
Luddite asked 17/12, 2016 at 3:33

1

I'm trying to write a script that will list all installed certificates in the keychain and compare them to the creation/expiration dates of certificates from the Apple dev portal. I've looked at t...
Technocracy asked 13/11, 2016 at 22:54

1

Solved

We have a Launch Daemon which (necessarily, for various reasons) runs as root, and which communicates with a server component via the network. It needs to authenticate with the service, so when it ...
Conchiolin asked 16/11, 2016 at 17:12

1

Solved

Until Xcode 8/iOS 10, I was able to access the Keychain from within the unit tests of a static library. After upgrading, I get an error, see stack trace: failed: caught "NSInternalInconsistencyExc...
Thievish asked 16/9, 2016 at 18:53

1

I am developing an Android project. I have a PEM certificate string: -----BEGIN CERTIFICATE----- MIIEczCCA1ugAwIBAgIBADANBgkqhkiG9w0BAQQFAD..AkGA1UEBhMCR0Ix EzARBgNVBAgTClNvbWUtU3RhdGUxFDASBgNVBA...
Tetrabrach asked 5/11, 2016 at 19:44

1

I am developing an Android project. I have a PEM certificate string: -----BEGIN CERTIFICATE----- MIIEczCCA1ugAwIBAgIBADANBgkqhkiG9w0BAQQFAD..AkGA1UEBhMCR0Ix EzARBgNVBAgTClNvbWUtU3RhdGUxFDASBgNVBAo...
Frangipani asked 7/11, 2016 at 12:7

3

Solved

So I'm trying to turn on the Keychain sharing in target capabilities, and I got this error message: Add the keychain sharing feature to your App ID. The entitlements file is changed automatical...
Cooks asked 17/8, 2016 at 21:59

2

What I'm trying to do Basically what I'm trying to do is figure out a way to encrypt data using Touch ID. Sadly I've not found a way to create an encryptionKey with Touch ID, since the LAContext AP...
Jealous asked 13/8, 2015 at 9:24

2

Solved

Apple has provided KeyChainItemWrapper class in their GenericKeyChain sample code. There is an ARC'ed solution here on SO, which I am trying to follow: wrapper to store in the KeyChain on iOS. The...
Cushing asked 3/11, 2013 at 2:13

7

Solved

I use the Apple wraper for the keychain, and try to save a item on it (running in simulator, ios 4.1). I have not experience with the keychain before. I get this error: Couldn't add the Keycha...
Rhaetian asked 29/11, 2010 at 23:22

1

unsupported resource found (something not a directory, file or symlink) Command /usr/bin/codesign failed with exit code 1 It's like duplicate but not duplicate. Please have a look. Complete error l...
Extraterritoriality asked 19/5, 2016 at 6:52

© 2022 - 2024 — McMap. All rights reserved.