Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024-symmetric-vs-asymmetric-cryptography #151

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions 2024/symmetric-vs-asymmetric-cryptography/article.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Symmetric vs. Asymmetric Cryptography

In today’s digital world, securing information is essential. We use cryptography to convert data into unreadable code. There are two main types of cryptography: symmetric and asymmetric.

Symmetric Cryptography is simpler and uses the same key for both encrypting (scrambling) and decrypting (unscrambling) information. This requires both parties to agree on a secret key in advance and keep it confidential, which can be challenging.

Asymmetric cryptography, on the other hand, uses a pair of mathematically related keys. One key, called the private key, is used to encrypt a message, while the other, known as the public key, is used for decryption.

In practice, both symmetric and asymmetric cryptography are used together, depending on the application.

## Author
- Ali Ajorian
Loading
Loading