juno.keychain¶
Secure credential storage via the iOS Keychain.
- exception juno.keychain.KeychainError¶
Bases:
ExceptionRaised when a keychain write operation fails.
- juno.keychain.get_password(service, account)¶
Return a stored password for a service/account pair.
- juno.keychain.set_password(service, account, password)¶
Store or update a password in keychain.
- Parameters:
- Raises:
TypeError – If any argument is not a string.
KeychainError – If native keychain write fails.
- Return type:
None
- juno.keychain.delete_password(service, account)¶
Delete a stored password for a service/account pair.