{{theTime}}

Search This Blog

Total Pageviews

Java command line Security Tools

  • keytool -- To manage keystores and certificates.
  • jarsigner -- To generate and verify JAR signatures.
  • policytool -- To mangage policy files using GUI.

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...