Questions tagged as 'password'

2
answers

How to create a password mask in C

I created this code in C to generate masks in the password, but it does not let you delete the characters afterwards nor save the variable correctly. What can it be? Follow the current code: void login(){ int i,tam; char usuario[80],...
asked by 07.06.2017 / 15:12
1
answer

PHP's password_hash function is a wrapper for the crypt function?

The password_hash function looks like a wrapper that adds a high-level layer to the crypt function, since it has a default setting that could be done with crypt manually. The same thing happens with the password_verify...
asked by 01.07.2018 / 17:21
1
answer

How to use the bcrypt function of laravel?

I have a .php file in the public folder of Laravel and for bigger reasons I can not create a controller of it. However I need to use the bcrypt function to generate the password an encrypted password, but I can not use this functio...
asked by 09.09.2017 / 03:00
1
answer

How can I generate temporary URL to recover password in play framework?

I am developing a web application using the framework play 1.4 (didatica version) and I want to implement the password recovery functionality where the user will put his email and will be sent a temporary link to reset his password. My question,...
asked by 08.07.2017 / 18:11
1
answer

error with password_verify ()

Good afternoon I have a problem using password_verif() it is not verifying correctly to log in, it is falling straight into else with msg "bad password". could anyone help me? Functions: private function compararSenha($hash){...
asked by 07.12.2018 / 17:40
0
answers

Is Password Hash enough to filter the input of a password field into a password? [duplicate]

I currently do the following: $senha = strip_tags(trim($_POST['Senha'])); $senha_segura = password_hash($senha, PASSWORD_DEFAULT); I would like to know if this is the best way to protect the password field and if using the hash password...
asked by 17.10.2018 / 00:27
1
answer

Visible Password

I am building a login in asp.net and I want that when clicking the checkbox to show the password it is shown. Design asp page <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <div id="Titulo"...
asked by 04.05.2018 / 13:00
1
answer

Doubt about Cryptography in passwords [duplicate]

I would like to know the difference between MD5 and SHA256 in passwords. If there is a more secure one and when and when it is better to use one or the other.     
asked by 29.03.2018 / 16:48
2
answers

Email Form React

I made a simple validation using react , and I would like the message 'b' to be available only when the user clicked on submit how can I do it? export default class LoginApp extends React.Component { validarEmail=(e)=>{...
asked by 15.03.2018 / 14:32
0
answers

discover the hash method of a password

I am breaking my head to try to find out which hash method one of the applications my company is using, I do not have access to the source code because it is a compiled ASP, but it stores the password in the database and they all have the same si...
asked by 19.01.2018 / 14:05