This article will demonstrate how to install .NET 3.5 on Windows Server 2019. Unfortunately, some software still requires the older version of .NET making system administration of modern OS's more difficult than it should be. If the original installation of Server 2019 did not include .NET 3.5, you … [Read more...] about Install .NET 3.5 on Windows Server 2019
Netscaler SSL Redirect
This article will demonstrate how to configure a Citrix Netscaler ssl redirect as well as how to configure a redirect from a port and rewrite action. Netscaler SSL Redirect This example will assume you already have a Virtual Server configured in your ADC VPX appliance and it's listening on … [Read more...] about Netscaler SSL Redirect
ldapsearch Active Directory
The purpose of this article is to demonstrate how to use ldapsearch with Active Directory. Microsoft's Active Directory is an Ldap implementation running on domain services in a Microsoft environment. This article is geared towards directory administrators coming from a Linux environment using … [Read more...] about ldapsearch Active Directory
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
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
OCSP (Online Certificate Status Protocol)
The OCSP, or Online Certificate Status Protocol, is a protocol designed to deliver the revocation status of an X.509 SSL or TLS certificate. In theory, it is more performant than its CRL (Certificate Revocation List) alternative. Responses are required to be delivered by the CA (Certification … [Read more...] about OCSP (Online Certificate Status Protocol)