Jump to content

Command Crate ¿about?

Generate random password (openssl, sha-256 )

openssl rand -hex 15 | sha256sum | head -c15 | cut -b -15

Uses openssl to generate 15 bytes of random data in hexadecimal, hashes it with SHA-256, then truncates the output to the first 15 characters to create a random password.

utilities [kb:212]