Currently I am working on php project. The project main theme is to login through ssh to some cisco switch in my local network , fetch details and populate it to user. To accomplish this I have created on database in MySQL consisting switch login credentials. And my PHP code will fetch the login credentials from database and do it’s
Tag: password-encryption
phpseclib error bigInterger not found on line x
hi this my error when i want implement RSA algorithm in PHP how to fix this problem everything seems okay and i not changing anything Fatal error: Class ‘phpseclibMathBigInteger’ not found in phpseclib/Crypt/RSA.php on line 509 this is line 509 in __construct method of RSA class $this->zero = new BigInteger(0); how to fix this problem Answer My guess: you’re trying
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 length limit on generated hashes, but I need to know the maximum length so I …