Questions tagged as 'criptografia'

1
answer

fgets not working

I am developing a code to encrypt in the cesar cipher. The decryption is working perfectly, but to encrypt, fgets does not expect me to type the text. I have tried everything, the only command that works is: scanf ("% s", & cif), but...
asked by 28.10.2016 / 17:27
1
answer

C # hash encryption

I was able to create a registry with encrypted password, but in the method of access (log in) I am in doubt on how to get the password entered and compare it with the password registered with encryption. Here is my code: class FuncionarioDAO...
asked by 16.10.2018 / 04:33
1
answer

Confirmation email with password_hash

By registering on the site, the user receives an email to activate the registration, until then everything is right. The problem is with checking the password_hash, I know you have password_verify, but in this case it seems that you can not use...
asked by 17.07.2018 / 05:24
1
answer

: Python3 Tkinter Requests: Temporary locking in get ('url') with the requests!

This is the following I created a script to 'decrypt' md5 hash, but when I enter Entry 21232f297a57a5a743894a0e4a801fc3 that is admin and is contained in wordlist, it hangs every time it reaches the b=get(f'url').content.decode(...
asked by 25.10.2018 / 15:18
1
answer

Encryption for wordpress plugin code

I finished a wordpress plugin and I do not want to leave the code open. I've tried using a simple obfuscator, but after obfuscating wordpress does not recognize it as a plugin. Does anyone have a light how to protect my code?     
asked by 13.04.2016 / 17:38
1
answer

What is required to create an authentication system (login / password / session) in PHP? What important points should I be concerned about? [duplicate]

I want to create a site with my own authentication system, without using anything ready. I would like to know the steps for creating this system, in order. If there is a best practice convention and what points I can not forget to take i...
asked by 13.02.2014 / 19:44
1
answer

How to generate "unescape" inside code

I have a simple unescape encryption and would like the generated encode to stay within the default unescape code, type: code that I use: var encN=1; function decodeTxt(s){ var s1=unescape(s.substr(0,s.length-1)); var t=''; for(i=0;...
asked by 12.04.2016 / 04:04