{{theTime}}

Search This Blog

Total Pageviews

What is GNUPG?

GnuPG is a hybrid encryption software program, uses a combination of conventional symmetric-key cryptography for speed, and public-key cryptography for ease of secure key exchange, typically by using the recipient's public key to encrypt a session key which is only used once

https://www.gnupg.org/index.html

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 =...