Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 296 Bytes

File metadata and controls

14 lines (10 loc) · 296 Bytes

Ceaser-Cipher

Simple program to encrypt or decrypt a string using Caesar Cipher

Quick Start

import ccipher

mycipher = ccipher.encryptMessage
print mycipher("Hello World",10)
mycipher = ccipher.decryptMessage
print mycipher("ROVVY GYBVN",10)