From c267b7029bb5923b4eca7b318ca1d38acd8d0073 Mon Sep 17 00:00:00 2001 From: sjoh29 <44416532+sjoh29@users.noreply.github.com> Date: Wed, 3 Jul 2019 10:46:10 -0400 Subject: [PATCH] Added "Hybrid Cryptography" to article (#32898) Added and defined Hybrid Cryptography --- guide/english/security/cryptography/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guide/english/security/cryptography/index.md b/guide/english/security/cryptography/index.md index 708ab53d58..77eb3b8abb 100644 --- a/guide/english/security/cryptography/index.md +++ b/guide/english/security/cryptography/index.md @@ -52,6 +52,10 @@ Asymmetric Encryption algorithms provide each user with a pair of keys: one publ Some Asymmetric techniques include: RSA, Diffie-Hellman, DSS(Digital Signature Standard), ElGamal. +### 3) Hybrid Cryptography: + +Hybrid Cryptography is a hybrid based encryption with both Asymmetric and Symmetric Key Encryptions. This is achieved by using public key encryption to protect the message by adding an unsystematic layer over the symmetic key encryption. Next, the public key encryption technique is used to decode the symmetic key. After the symmetic key is uncovered, the message is ready to be decrypted to plain text. This method is shown to be quite useful in providing extra security in cryptographic messages. + ### Cryptographic Hashing Most cryptographic hash functions are designed to take a string of any length as input and produce a fixed-length hash value.