This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, numpy as np | |
def cipher_encryption(): | |
msg = input('Enter message: ').upper() | |
msg = msg.replace(' ', '') | |
len_chk = 0 | |
if len(msg) % 2 != 0: | |
msg += '0' | |
len_chk = 1 | |
row = 2 |
NewerOlder