openGPMP
Open Source Mathematics Package
Functions
python.cipher_ex Namespace Reference

Functions

def main ()
 

Function Documentation

◆ main()

def python.cipher_ex.main ( void  )

Definition at line 5 of file cipher_ex.py.

5 def main():
6  c = nt.Cipher()
7  ciph = c.caesar("Plaintext", 5)
8  print(ciph)
9 
10  ciph_1 = c.caesar("ATTACKATONCE", 4)
11  print(ciph_1)
12 
13  text = "Password"
14  shift = "Computer"
15  encoded_text = c.keyword_encode(shift)
16  hashtext = c.keyword(text, encoded_text)
17  print(hashtext)
18 
19