How To Generate a Self Signed Certificate Using Java Keytool A self signed certificate is a certificate that is signed by itself rather than a trusted authority. Since any attacker can create a self signed certificate and launch a man-in-the-middle attack, a user can’t know whether they are sending their encrypted information to the server […]
Category: Java
Java Online Tutorial
Java Reflection API
Java Reflection API Java Reflection API is a process of modifying or retrieve metadata of a class at run time. The java.lang.Class class provides methods that can be used to get metadata and change the run time behavior of a class. The java.lang and java.lang.reflect packages are providing classes for java reflection. The Java Reflection API is […]