26 questions
0
votes
0
answers
56
views
How can I automate passing the password for keyring inside a python script?
I'm trying to configure Keyring for the first time.
My environment:
O/S Platform : Headless RHEL 8.6
Python version : 3.9
backend I'm using keyrings.alt.
What I have done so far is:
Created the ...
0
votes
0
answers
44
views
Keyring Crate returning success but not storing the credentials in the MACOS 15.0 keychain
Problem Description:
I'm developing a database client in Rust and using the keyring crate to store credentials in the Apple Keychain. My code returns a success message when storing the credentials, ...
0
votes
0
answers
44
views
How to remove empty keyrings in linux machines?
I have several empty keyrings after setting up several podman runs via GNU parallel. I am not able to run anymore podman runs after these runs completed. I tried all suggestions using keyctl tool, but ...
2
votes
1
answer
101
views
Threads don't see each other's data in process-specific keyring
I'm trying to write data in one thread and get it in another, like this:
#include <mutex>
#include <thread>
#include <iostream>
#include <keyutils.h>
int main()
{
std::...
-1
votes
1
answer
139
views
Share keys between sessions of kernel keyring
With Linux Kernel Keyring (keyctl or keyutils) how can I share a key not only between sessions but also between users?
I want a key to be created once and then accessible for everyone on the system no ...
0
votes
0
answers
133
views
Sharing kernel keyring between systemd services
I am working with kernel keyring (e4crypt tool stores its keys there).
For some reason systemd doesn't share kernel keyrings between services. Service A launches a script that creates a key and then ...
0
votes
0
answers
130
views
How to solve the "No directory provided for file keyring" issue while integreting stripe CLI to a project using Ubuntu WSL on windows?
I am working on a SaaS project using the Wasp Boiler framework and attempting to integrate Stripe CLI. Despite following all the setup steps, including downloading the Stripe CLI and configuring the ...
0
votes
0
answers
47
views
Unable to send mail from Ubuntu - keyring library in R
My code (listed bellow) works in R Studio (Windows) but throws eror when I tried to execute it from command line on ubuntu.
My code:
library(keyring)
library(blastula)
keyring_unlock(password = "...
0
votes
0
answers
27
views
MYSQL keyring contents deletion or addition in mysql community version
I recently came to discover keyring file in mysql community version. I tried to delete the contents of the file and then run mysql the contents of my encrypted table were not retrieved. Is there any ...
0
votes
0
answers
145
views
pip install with keyring-provider is not working
I have keyring installed as the artifactory repo where I download the package required authentication.
Operating System is Windows 10.
I referred this document and decided to use keyring with pip.
...
3
votes
1
answer
442
views
Read Windows Credentials From R
I have a couple of windows credentials stored using the Windows credentials manager:
I would like to retrieve some passwords via R and I am using the oskeyring package for doing so:
library(oskeyring)...
1
vote
1
answer
654
views
Cassandra keyring issue
I am installing cassandra following the steps in the official website coming to the step of sudo apt-get update I got this
Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead ...
1
vote
0
answers
119
views
Unable To Set Permissions On Keyring Created Using Go keyctl
I'm facing an issue in setting permissions on a named keyring created using keyctl.
When I create a key manually using keyctl however I'm able to set permissions using setperm whereas the setperm ...
1
vote
1
answer
220
views
What Does "user" Scope Mean in Linux Kernel Keyring (Golang)?
Since the official documentation for this Go package is scarce on details, I'd like to know what "user" scope means exactly on this page ?
Does it mean the secret is stored for the lifetime ...
0
votes
0
answers
3k
views
keyring couldn't be identified for storing the encryption
I need help resolving this issue. I don't think I changed anything lately, so maybe some update caused it. (I did switch from lxpolkit to polkit-gnome, but I don't understand how this could be an ...
1
vote
1
answer
206
views
Nuitka compilation error: No keyring backend available
I’m trying to compile a small python file which sends email based on the yagmail library, which itself relies on the keyring library.
Compiling works fine. Executing with dry-run options works fine. ...
0
votes
0
answers
461
views
Dockerize a python application for distribution
I created a small python application that automatically sends emails with some customization.
I want to distribute it in a way that is fairly easy for end users (i.e., general Windows and macOS users) ...
1
vote
1
answer
417
views
How do you delete the keyring and change the passphrase for any cosmos sdk blockchain?
I spent some time trying to change the passphrase for stride cosmos sdk blockchain. Even after deleting all keys, I was always prompted to enter the old passphrase when i created a new key and it ...
0
votes
0
answers
207
views
How to import an account to Keyring which was exported from the polkadot{.js] browser extension?
I have installed the polkadot{.js} browser extension and exported an account to a json-file.
I want to have that account available on a server where I have installed the @polkadot/keyring library.
Is ...
1
vote
1
answer
183
views
Error trying to register email credentials with Yagmail and Keyring
I'm using Python3 on a remote machine running Ubuntu 20.10 to send some emails with yagmail. I'm able to send the emails just fine with an application-specific password, as long as the password is ...
0
votes
0
answers
334
views
Cron job script failing because of keyring interaction
I have a simple python script set to run via the crontab which keeps failing. The script utilizes the keyring package, installed through pip. I set up keyring and can run the script manually in the ...
2
votes
1
answer
1k
views
Artix signature is unknown trust
I installed artix-mate-openrc a day ago. Their repo is too short and I wanted to add archlinux repo (community and extra) to add alacritty and other apps I needed. They do have a program in their ...
1
vote
1
answer
1k
views
keyring.get_password() throws NameError when reading credential from Windows Credential Manager
I am try to implement keyring on a windows system to manage database passwords for connection strings in pyodbc and sqlalchemy. I have tried to ensure the relevant packages from the NameError(s) ...
0
votes
0
answers
51
views
key_add is returning same signature values
so im trying to add ecryptfs fnek and fekek signatures to the user keyring and im using openssl to generate a random payload for the keys but for some reason the signatures are the same each time i ...
0
votes
1
answer
128
views
How to view string as it is being entered in keyring::key_set()
When I type into the pop-up triggered by key_set() I am unable to view the text I am typing. Is there a way to override this default feature that masks the string, or toggle it on & off so that ...
0
votes
1
answer
1k
views
How to store a new record in gnome keyring via secret-tool in an ansible task or how to pipe stdin in an ansible shell task?
I'm trying to store a new password record in gnome keyring programmatically in an ansible task. As there is no dedicated ansible module for this task, I tried the shell module - but I struggle to pass ...