You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You use the same key (any secret key) for encryption and decryption.
48
48
49
-
#### Asymmetric way
49
+
#### Asymmetric encryption
50
50
In an asymmetric way, the library can use its own self-generated RSA key pairs (Private/Public key) to encrypt and decrypt content.
51
51
52
52
You can store the private key on one or more machines. The public key can easily distribute to all clients.
@@ -57,18 +57,20 @@ It is also possible to use asymmetric keys of the X509 Certificate instead of ge
57
57
58
58
The main concept with asymmetric encryption is that you have a Private and Public key. You use the Public key to encrypt the content and use the Private key to decrypt the content back again.
59
59
60
+
Read more about asymmetric or public key encryption [here](https://www.cloudflare.com/learning/ssl/what-is-asymmetric-encryption/)
0 commit comments