Skip to content

a python tool to manually encrypt a text file character by character using the RSA encryption system. This is NOT a safe implementation as it can easily be cracked. Please use only for educational purposes.

Notifications You must be signed in to change notification settings

schumannd/manualRSA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

manualRSA

a python tool to manually encrypt a text file character by character using the RSA encryption system. This is NOT a safe implementation as it can easily be cracked. Please use only for educational purposes.

usage

	create key and encrypt:
	python manualRSA.py -key [keySize] [/path/to/clearTextFile]

	decryption:
	python manualRSA.py -d [/path/to/cypherFile] [/path/to/privateKeyD] [/path/to/publicKeyN]

	encrypt with existing key:
	python manualRSA.py -e [/path/to/clearTextFile] [/path/to/publicKeyE] [/path/to/publicKeyN]

About

a python tool to manually encrypt a text file character by character using the RSA encryption system. This is NOT a safe implementation as it can easily be cracked. Please use only for educational purposes.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages