Top "Password-encryption" questions

Password encryption is the act of securing a password with another password.

Python Password Protection

I am a beginner so if this question sounds stupid, please bear with me. I am wondering that when we …

python passwords password-protection password-encryption
Using encoded password for the datasource used in spring applicationContext.xml

I want to keep encoded password in my below mentioned springApplicationContext.xml Is there any way to achieve this? presently …

spring hibernate datasource apache-commons-dbcp password-encryption
password_verify doesn't verify hash

I hash my inserted passwords via password_hash. I verify them by using password_verify. However when I insert a …

php hash verification password-encryption
Does AES/CBC really requires IV parameter?

I am writing a simple app to encrypt my message using AES / CBC (mode). As my understanding CBC mode requires …

java aes password-encryption cbc-mode
How do I get hex blocks from a base 64 encoded string?

In this article and this XKCD, they both show the password data as groupings of hexadecimal. However, in the file …

bash command-line base64 decode password-encryption
Password to key function compatible with OpenSSL commands?

For example, the command: openssl enc -aes-256-cbc -a -in test.txt -k pinkrhino -nosalt -p -out openssl_output.txt …

c openssl cryptography password-encryption kdf
Why MD5/SHA1 password hashes cannot be decrypted?

I recently read an article about password hashing. How are MD5 or SHA1 hashes are created such that it can't …

password-encryption password-hash
Why is the output of werkzeugs `generate_password_hash` not constant?

When I run werkzeug.security.generate_password_hash("Same password") (docs) multiple times, the output is different each time. What …

python flask password-encryption
Hide datasource password in spring xml file

there is a way to hide/encrypt password in xml spring config file? I read that is possible with a "…

java xml spring keystore password-encryption
Maximum length of generated hash when using password_hash?

I'm using password_hash($password, PASSWORD_BCRYPT); to encrypt passwords to store in a database. As I read, there's no …

php password-encryption