Password encryption is the act of securing a password with another password. It is basically insecure and open to legal objections. If your intent is to use passwords for authentication (e.g. for logins), look at hashing instead of encryption.

learn more… | top users | synonyms

0
votes
0answers
16 views

maven password encryption issue

when executing command: mvn -ep for encrypting server password for settings.xml from my windows box the command terminal just hangs. Any ideas whats wrong? The server password only has numbers and ...
-1
votes
0answers
15 views

Decrypt hard drive without prompt for password [closed]

In the world of embedded Linux or industrial, it is common to need to have protected data on a hard drive or solid state drive. Obviously these are devices or industrial machines, you can not ask a ...
0
votes
2answers
58 views

generate a 128-bit string in C#

I am developing a class project in C# that encrypts the users and admins passwords. To encrypt I'm using the TripleDESCryptoServiceProvider. In the configuration app the user enters the key to be ...
0
votes
0answers
14 views

Double encryption sha1 md5

Some time ago, in a project, for storing the users' passwords on a database, I did the following for calculating the value I had to fill in the password field: encrypted_password_field= ...
1
vote
1answer
37 views

how to encrypt text in python using tkinter

I want to encrypt a piece of text, like if someone where to type in their password it would come up with stars or the dots I'm using tkinter if that matters. in the entry part can the users password ...
0
votes
1answer
65 views

How secure is storing passwords with a salt and crypt()? [duplicate]

Coding an application that needs to store user's passwords for login. At the moment, I am using the following code: <?php $password = $_GET['password']; $salt = "pepper"; $password = ...
0
votes
0answers
20 views

“Cleartext” password with bindpw in nslcd.conf?

I want to know if there is a way to not put the password in clear nslcd.conf file? A hash or so I've heard of a method with SASL but I do not know how it works. Thank you in advance
0
votes
0answers
26 views

mvn --encrypt-master-password <password> : Good practice for choosing <password>? Which level of privacy should it be?

I am learning to use maven password encryption capabilities and I would like to know how to choose the parameter <password>. There are two things that I don't understand: 1) mvn ...
0
votes
1answer
34 views

SQL Server Compact database file decrypt unlock

I got an unique database local file name database.db This was generated with SQL Server Comptact edition, but it is in encrypted format. Does anyone knows a tool to decrypt the password, or try to ...
-3
votes
1answer
86 views

Base64 encode javascript, encrypted with custom string stored in database? [closed]

I realized how easy it is for someone with the know-how to decode a base64 string. So really using it is practically pointless. Unless you could use some sort of custom string to further encode it, ...
1
vote
1answer
51 views

how to securely store a password for a 3rd party service in django?

I'm running a web service on Django. Users register to my system and provide me login details (username and password) for a 3rd party web service). My purpose is to store this details in the best and ...
-5
votes
1answer
45 views

Recommendations for cross-language, secure encryption [closed]

I'm working on this what I hope to be my degree project since we have to do one over here to get that lame degree, anyway, I have a SOAP server, a PHP server and hopefully a Java application and an ...
0
votes
2answers
122 views

MVC4 Simple Membership password handling

I'm using the SimpleMembershipProvider in my MVC4 application. It seems that things like enforcing password complexity, a maximum number of login attempts and the like are not built in to this ...
0
votes
1answer
15 views

Maximum key size in PBE?

In Java I see each encryption type has a maximum key size like AES-256, DES-128, 3DES-128 and so on. In PBE we are entering the key and its modified by salt. I would like to know what can be the ...
1
vote
5answers
39 views

Encrypting a textfield in HTML

I have a text field in my HTML project that I want to encrypt as a password. So basicaslly instead of this being displayed in the text field: mypassword I want it to say: ********* or something ...
1
vote
0answers
33 views

Rfc2898DeriveBytes with Sha2 in C#

I have a password hashing mechanism based upon Rfc2898DeriveBytes (based on code detailed here: http://crackstation.net/hashing-security.htm). Internally, this class utilizes SHA1 which - the ...
1
vote
1answer
41 views

Jasypt 1.9 : Encrypting passwords with exclamation

I am using Jasypt 1.9, and when I try to encrypt a password with exclamation it fails. It works fine without exclamation for ex: ./encrypt.sh input="abc!abc" -sh: !abc": event not found Jasypt ...
0
votes
0answers
47 views

mkpasswd sha512 password generation

I have generated a hash using mkpasswd command, cybersecurity@cybersecurity-aryanz:~/Desktop$ mkpasswd -m sha-512 albie manchester ...
0
votes
1answer
85 views

PHP encryption / decryption adding padded characters

I'm trying to create a simple Encryption class but the resulting string is being padded with non-ascii characters. I've tried rtrim(), converting to utf8, etc. as mentioned in some other answers. What ...
0
votes
0answers
30 views

User file encryption to store them in server, without access to decryption key in server side

I am trying to build a file synchronization system, where users can encrypt their files in their own computers and then they can send it to server to store them, I think this system is something like ...
0
votes
2answers
104 views

Password Encrypting [duplicate]

I am trying to write a password encryption class that I can use to encrypt and store user passwords. I want to make sure that I am doing this correctly. This code works fine and appears to generate an ...
1
vote
0answers
56 views

Storing user passwords with PHP - designing for long term [duplicate]

After reading many articles and docs regarding password handling, it's more than obvious that among best practices: I should not create custom encryption. I should use low level functionality in PHP ...
1
vote
1answer
82 views

Hash string being cut off upon insert to database

I am having a strange issue. I will post two sections of code to hopefully make my question clear. The following code creates a hash from the password the user enters and I am using hmac and bcrypt: ...
2
votes
1answer
60 views

How does mvn --encrypt-master-password <password> work?

I would like to know the algorithm or technique used by this command (mvn --encrypt-master-password ). Each time I run it produces a different output. I'm assuming that it takes system time as a seed ...
3
votes
1answer
97 views

Can I improve the security of MD5 hashed passwords by salting the existing MD5 hash and hash the result using Scrypt or PBKDF2 HMACSHA256?

I have a database of legacy passwords that were salted and hashed using MD5. I would like to update the system so that the data is more secure. The first option is to transition the users to a new ...
0
votes
2answers
114 views

Android — Storing data on shared preferences

I'm currently designing an application which has initial login page. I provide remember me functionality and I stored username and password values in shared preferences. I illustrated my sample code ...
0
votes
0answers
50 views

Password Safe V3 encryption

I'm trying to write a JavaScript program to encrypt/decrypt Password Safe V3 files, however I cannot quite get my head around the algorithm. This site: ...
2
votes
2answers
81 views

PHP password protection secure enough

Before I start I'd like to apologise for bringing up this subject once again, as many users did, but with a research I did, I wasn't happy with what I've found. I just hope to come up with something ...
0
votes
1answer
27 views

Security risk of storing passwords as hex compared to binary

I've just been working through a tutorial which told me to use the hash_hmac to hash my passwords, with the setting 'true' to output in binary format. Then save this as a varbinary(32) format in my ...
1
vote
1answer
100 views

Which implementation of bcrypt is recommended for PHP 5.3?

OK, I finally understand bcrypt, how it works, and how to store it in the DB, so I'm almost good to go. The problem now is picking which implementation of bcrypt to use with PHP 5.3. I'm going crazy ...
-3
votes
1answer
56 views

md5 and encryption

I have searched this forum thoroughly and noticed that using md5 in php has week points. how is it possible for any hacker to Decrypt md5 hashes and why is it better to provide symbols(@#$%&) and ...
0
votes
0answers
56 views

validating password failure

I went through this link http://crackstation.net/hashing-security.htm#properhashing and used the code given for php. I am able to register new users by calling create_hash($password) function in the ...
0
votes
0answers
198 views

org.jasypt.exceptions.EncryptionOperationNotPossibleException

I am using Jasypt-1.9.0 with Spring 3.1 and Hibernate 4.0.1. I have a requirement in my application to connect to database whose password(root) is stored in the encrypted form in the property file ...
1
vote
3answers
75 views

How to mask the sensitive information contained in a file using tcl?

I'm trying to implement a tcl script which reads a text file, and masks all the sensitive information (such as passwords, ip addresses etc) contained it and writes the output to another file. As of ...
0
votes
1answer
63 views

In ASP.net MVC Models is there a way to manipulate data in the property setters?

This post is kindo of asking what I need but not very well... how to encrypt password in asp.net mvc Essentially I have a model "User" Public Class User Public Property ID As Integer ...
0
votes
2answers
148 views

Retrieving an encrypted password in PHP [duplicate]

The following code is what I've used to encrypt a password in PHP... $password = sha1(sha1($_POST['password']).sha1("mySalt@$#(%")); What code can I use so users can log in using what they typed?
1
vote
1answer
27 views

how to store a password in webapp that needs to be passed in plain text to a third party?

I have a simple webapp which users login to access to a third party API that also require their personal credential in plain text username and password (no OAuth or anything). What's a proper, ...
1
vote
1answer
150 views

How to save a password properly

I attemt to write a program, with which you can login to a remote website. For some people having multiple accounts, I try to make it easy for them and store account data in IsolatedStorage. At the ...
0
votes
0answers
57 views

Hashing password update mysql not working

I've run the following PHP and it echo's the hashed passwords, however, it doesn't update/replace the unhashed password in the table? <?php require_once 'wp-config.php'; $sql="SELECT ...
0
votes
2answers
78 views

SQL query/PHP to import users from one table to another, but hashing the password?

I have 2 tables - old and new. Starting from ID 5000 until ID 10000, I need to import data from the old into the new table. Let's just say "Name" and "Password" needs to be imported. In the old ...
0
votes
2answers
334 views

C# Encrypted Password

I have a password field for a user, that when it is saved to a database, the password is encrypted. Also, if i go to edit a user, the password field is hashed. But the hashed field is hundreds of ...
1
vote
2answers
394 views

how to set password to micro SD card programmatically?

is there any way to write protect micro sd card with password through programming (Java/C)? primarily I wanted to set a password to micro sd card and the sd card should have access only if we provide ...
0
votes
3answers
38 views

Is it worth encrypting a password hash?

I was wondering if it is common practice to encrypt a password hash, and/or the salt, does it necessarily make it more secure or just increase the time it'd take to "guess" the password? Thanks!
0
votes
0answers
60 views

use php to login users to ASP.Net Membership users database

I have a database of users created in ASP.Net Membership .Net 4.0 using SHA-256 base64 hash algorithm. I would like to now use php and write a function that will log in a user if the user provides ...
0
votes
2answers
165 views

password encryption used for plink.exe command

I would like to encrypt a password in powershell I tried this : In CLI : Read-Host -prompt "Password ?" -AsSecureString | ConvertFrom-SecureString | out-file "D:\root.pwd" In my script.ps1 : ...
0
votes
2answers
66 views

Password protection for Python and PHP

I am currently building a web/desktop application. The user can create an account online and login either online or via the desktop client. The client will be built in Python and exported to exe. I ...
0
votes
1answer
40 views

encrypting password and saving them to database

I have recently implemented hashing in my website. I have a problem. Earlier i was saving password as simple plain text. Now onwards i am saving password as hashed entry . What should i do with that ...
2
votes
2answers
96 views

password management

I have a question about password management. Let's suppose I have a program and the user enter a password, and the data is stored encrypted. One way would be: Encrypt data with the user's password. ...
0
votes
1answer
67 views

Using Maven Password encryption with flyway maven plugin

I'm using flyway and its maven plugin for database migration and my database credentials are stored in plain text format in the server section of .m2/settings.xml. I'd like to avoid this and to ...
0
votes
2answers
151 views

How to store a system.net.mail password in the database

I need to store email passwords which will be used with system.net.mail. These need to be retrieved and sent as plain text but I don't want to store them as plain text. This isn't really about ...

1 2 3 4