GithubHelp home page GithubHelp logo

skip32's Introduction

Skip32 php implementation
=========================

32-bit block cipher based on Skipjack

This cipher can be handy for scrambling small (32-bit) values when you would like to obscure them while keeping the encrypted output size small (also only 32 bits).

Skip32.php
----------

Simple API to encrypt/decrypt values using the Skip32 cipher

Example :

  $key = '0123456789abcdef0123'; // 10 bytes key
  $int = 4294967295; // 4 bytes integer

  $encrypted = Skip32::encrypt($key, $int);
  $decrypted = Skip32::decrypt($key, $encrypted);

  printf("%d encrypted to %d\n", $int, $encrypted);
  printf("%d decrypted to %d\n", $encrypted, $decrypted);

 This will display (on 64-bit architecture) :

  4294967295 encrypted to 572455217
  572455217 decrypted to 4294967295

Skip32Cipher.php
----------------

Adaptation of a direct Perl translation of the SKIP32 C implementation
http://search.cpan.org/~esh/Crypt-Skip32/lib/Crypt/Skip32.pm
http://www.qualcomm.com.au/PublicationsDocs/skip32.c

Example :

  $key = pack('H20', '0123456789abcdef0123'); // 10 bytes key
  $cipher = new Skip32Cipher($key);

  $int = 4294967295; // 4 bytes integer

  $bin = pack('N', $int);
  $encrypted = $cipher->encrypt($bin);
  list(, $encryptedInt) = unpack('N', $encrypted);

  printf("%d encrypted to %d\n", $int, $encryptedInt);

  $bin = pack('N', $encryptedInt);
  $decrypted = $cipher->decrypt($bin);
  list(, $decryptedInt) = unpack('N', $decrypted);

  printf("%d decrypted to %d\n", $encryptedInt, $decryptedInt);

 This will display (on 64-bit architecture) :

  4294967295 encrypted to 572455217
  572455217 decrypted to 4294967295

Performed by Nicolas Lenepveu <[email protected]>

skip32's People

Contributors

nlenepveu avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.