Skip to content

debackerl/pyskip32

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyskip32

Wraps the original c implementation of skip32 by Greg Rose, QUALCOMM Australia with a thin layer of python.

Example Usage

>>> import random
>>> import skip32
>>> key = ''.join(chr(random.randint(0, 255)) for _ in xrange(10))
>>> encrypted = skip32.encrypt(key, 12345)
>>> encrypted
3798503945L
>>> skip32.decrypt(key, encoded)
12345L

About

Wraps the original c implementation of skip32 by Greg Rose, QUALCOMM Australia with a thin layer of python.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 89.0%
  • Python 11.0%