Skip to content

Commit

Permalink
Fixed docs generation
Browse files Browse the repository at this point in the history
  • Loading branch information
victorolinasc committed Aug 16, 2021
1 parent fdbac1b commit 65696d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions guides/asymmetric_cryptography_signers.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
It is common to divide cryptography in three categories:

1. Symmetric cryptography (also called [symmetric-key algorithms](https://en.wikipedia.org/wiki/Symmetric-key_algorithm)):
- Clear text is passed to an algorithm that uses a key for encrypting and decrypting to generate cipher text;
- Examples include: AES (Advanced Encryption Standard), Blowfish, DES (Data Encryption Standard), etc;
- In the BEAM ecosystem, it is represented by the `:crypto.supports()[:ciphers]`.
- Clear text is passed to an algorithm that uses a key for encrypting and decrypting to generate cipher text;
- Examples include: AES (Advanced Encryption Standard), Blowfish, DES (Data Encryption Standard), etc;
- In the BEAM ecosystem, it is represented by the `:crypto.supports()[:ciphers]`.
2. Asymmetric cryptography (also called [public-key cryptography](https://en.wikipedia.org/wiki/Public-key_cryptography)):
- It uses a pair of keys where one is private (only known to the owner) and the other is public;
- Clear text is passed to an algorithm plus the private key and generates a cipher text;
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ defmodule Joken.Mixfile do
"guides/introduction.md",
"guides/configuration.md",
"guides/signers.md",
"guides/assymetric_cryptography_signers.md",
"guides/asymmetric_cryptography_signers.md",
"guides/testing.md",
"guides/common_use_cases.md",
"guides/migration_from_1.md",
Expand Down

0 comments on commit 65696d9

Please sign in to comment.