What is Java keytool? The Java keytool is a command-line utility used to manage keystores in different formats containing keys and certificates. You can use the java keytool to delete an alias from a keystore. In many respects, the java keytool is a competing utility with openssl for keystore, … [Read more...] about keytool delete alias – How to delete an alias from a keystore
keytool alias -changealias – How to change a private key alias
What is Java keytool? The Java keytool is a command-line utility used to manage keystores in different formats containing keys and certificates. You can use the java keytool to change a private key alias in a keystore. In many respects, it’s a competing utility with openssl for keystore, key, and … [Read more...] about keytool alias -changealias – How to change a private key alias
Java SecureRandom
Java SecureRandom lives in the java.security package, at java.security.SecureRandom. The number or value generated by this class is cryptographically strong and the generator is also known as a secure pseudo-random number generator (CSPRNG). Java SecureRandom examples The examples specify … [Read more...] about Java SecureRandom
keytool list certs – How to list contents of a keystore
What is Java keytool? The Java keytool is a command-line utility used to manage keystores in different formats containing keys and certificates. You can use the java keytool to list the contents a keystore. In many respects, the java keytool is a competing utility with openssl for keystore, key, … [Read more...] about keytool list certs – How to list contents of a keystore
Java for loop
Learn how to program with the java for loop to iterate over Collections of Lists, Streams, and Arrays and the syntax for each version of the for loop. For the complete list of java code examples, visit our GitHub Repo. Java for loop examples For each example below, assume an input of the … [Read more...] about Java for loop
PKI Glossary (Public Key Infrastructure) of terms
A PKI Glossary of terms and definitions covering some of the most common topics in a Public Key Infrastructure. Short PKI Glossary: PKI - A public key infrastructure provides a way to encrypt the web with digital certificates and manage the life cycle of the certificates, including enrollment, … [Read more...] about PKI Glossary (Public Key Infrastructure) of terms
PKIjs – JavaScript PKI
PKIjs is a JavaScript PKI (Public Key Infrastructure) library used for decoding and parsing SSL certificates directly on the client or browser, eliminating in many cases the need to do this work on the server side. PKIjs is built on top of the Web Cryptography API. The PKIjs library goes almost hand … [Read more...] about PKIjs – JavaScript PKI
openssl passwd
The openssl passwd command can be used to compute password hashes. openssl passwd examples To compute the password hash without a salt, run the following command: openssl passwd -crypt password To compute a salted password hash, run the following command using the crypt algorithm (which … [Read more...] about openssl passwd