I look out many password managers like keeper, 1password, secret-in and I am following secret-in password manager to create my own project and trying to add same features, but got stuck at storing the data of users like his/her secrets, payment secrets in encrypted form. I read encryption model of keeper here but still didn't understand. Where to store a server side encryption key? I have some data that is symmetrically encrypted with a single key in my database. Rather than hard coding it into my code, I am looking for a safer way to store the encryption key. Where can I safely store it?
How to store encryption key?
1.7k Views Asked by Mayur Koli At
1
There are 1 best solutions below
Related Questions in CRYPTOGRAPHY
- Do I have to randomize key in OpenSSL
- An exception of type 'System.Security.Cryptography.CryptographicException': keyset does not exist
- crypto.BadPaddingException: data hash wrong (EKYC-Response)
- Decrypted string returns "Length of the data to decrypt is invalid"
- Generate signature using private key with OpenSSL API
- Recovering an ECPublicKey from Java to JavaCard
- Proxy tool for CoAP integrated with DTLS
- Using CmsEnvelopedData with CmsSignedData to verify signed data
- Unchecked returned value causing unexpected states and conditions
- SQL-Server Verify SHA2_512 hash procedure
- SagePay Protocol 3.00 Encryption Error with ASP.NET
- Encrypting with PHP; decrypting with CryptoJS
- How can I write a function to recreate the original text obscured here by css magic?
- What encoding does [BouncyCastle] PKCS10CertificationRequest.getEncoded() return?
- Is integer comparison in Python constant time?
Related Questions in PASSWORD-ENCRYPTION
- WildFly datasource password protection
- Set encrypted postgres password without entering it as SQL
- Encrypting Passwords so devs do not have access to the key
- Code fails for decrypting without salt or iv in Java
- How to store password used for web scraping?
- Website Protection- Am i doing it right?
- Secure two way hashing technique
- password_verify not matching passwords
- encryption in spring-cloud-config-server
- Securing Plain Text Passwords in wso2is-5.2.0
- How to convert password from md5 to laravel encryption method
- Forgot my password for secure database
- Password protected page
- I'm not understanding the password_hash() function
- What is the Security Risk of Giving Away Both the Salt and Encrypted Password?
Related Questions in PASSWORD-MANAGER
- How to handle QR Code Generation for Login Puporses on a dummy site?
- How to create an email field that is not detected as a login field
- Implement Passkey to third party Password Manager
- Browser DOM Credential Management API password store not working - get returns null
- HTML - Disable Roboform Password Manager
- How to store encryption key?
- Set credentials for Password Manager to use
- How do I ensure Google Password Manager stores the correct field as the username?
- Password manager autofill
- Has anyone set up an API for a group of users in BeyondTrust,
- How can I tell a password manager which username/password to autofill with?
- my messagebox isnt popping up in my password manager app when i press the search button
- Blazor server login form doesn't see values inputted by password manager
- The problem of creating MD Lists at runtime (through 'for' loop) and assign them the same functions but with different parameters
- How to disable password manager in my form?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The approach here is quite simple.
You only send encrypted data to the server for storage/backup. The encrypted data received doesn't come with a key.
You need to ensure all encryption and decryption occurs locally on the users device. Thus the user needs to supply the key.
Users aren't good at providing high quality key material, so instead, require the user to provide a password, take that password and pass it through a hash-based key derivation function with parameters that make the function slow (high ops, high mem requirements). An algorithm like
pbkdf2with a strong PRF likeHMAC-SHA-2should be sufficient.Update: To answer your specific questions, you need to perform the following steps, you will need to use a cryptographic library that supports key derivation from password and symmetric encryption, like libsodium.