Skip to content

Commit

Permalink
Actualizada la licencia
Browse files Browse the repository at this point in the history
  • Loading branch information
Lerynnx committed Mar 12, 2024
1 parent 0737fdb commit c8ba368
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions Affin.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Date: 2024-03-11
# Version: 1.0
# Do not remove this Attribution if you use this code.
# Nottify the author if you want to use this code before using it.

def affine_encode(a, b, plain_text):
alphabet = 'abcdefghijklmnñopqrstuvwxyz'
Expand Down
1 change: 1 addition & 0 deletions Cesar.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Date: 2024-03-11
# Version: 1.0
# Do not remove this Attribution if you use this code.
# Nottify the author if you want to use this code before using it.

def caesar_cipher_encrypt(word, key):
alphabet = 'abcdefghijklmnñopqrstuvwxyz'
Expand Down
1 change: 1 addition & 0 deletions CesarWithKey.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Date: 2024-03-11
Version: 1.1
Do not remove this Attribution if you use this code.
Nottify the author if you want to use this code before using it.
"""
def encrypt(text, key, start):
text_len = len(text)
Expand Down
2 changes: 2 additions & 0 deletions Vigenere.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
# Date: 2024-03-12
# Version: 1.0
# Do not remove this Attribution if you use this code.
# Nottify the author if you want to use this code before using it.

def vigenere_encode(message, key):
encoded_message = ""
alphabet = "abcdefghijklmnñopqrstuvwxyz"
Expand Down

0 comments on commit c8ba368

Please sign in to comment.