Skip to content

0xEBFE/RC2-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

RC2-python

==========

RC2 (also known as ARC2) encryption algorithm in pure python. ECB and CBC modes are supported.

Usage

from rc2 import * 

rc2_ctx = RC2(bytearray('encryptionkey', 'ascii'))
msg = bytearray('Message for encryption', 'ascii')
encrypted = rc2_ctx.encrypt(msg, MODE_ECB)

Requirements

Python 3.2 or above.

(c) 2013, 0xEBFE

About

RC2 cipher in pure python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages