Category Archives: How-To’s

Self-Signed Certificate How-To

By | 2016-09-27

This guide will show you how to create a self-signed certificate with various tools. Quick Reference OpenSSL With New RSA Key openssl req -days 500 -newkey rsa:4096 -keyout privkey.pem -nodes -sha256 -x509 -out cert.pem With Existing RSA Key openssl req -days 500 -key privkey.pem -nodes -sha256 -x509 -out cert.pem Option Required What It Does req… Read More »

Introduction to Positional Notation

By | 2016-09-17

In computing, you will come across various numbering systems such as binary and hexadecimal. These systems are known as positional notation, but with different bases. This guide will explain positional notation and show you how to convert from one system, such as hexadecimal, to another. Positional Notation You probably learned this in elementary school, but… Read More »

Password Management

By | 2016-08-28

Passwords are used for banking, work, school, social media, message boards, email, and more. That is a lot of passwords to keep track of. Most of you have probably heard the advice to use pass phrases or long and complex passwords, even with secret questions. This is hard to do when you have dozens of… Read More »