diff options
Diffstat (limited to 'pypride.py')
-rw-r--r-- | pypride.py | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,6 @@ +# coding=utf8 + +# ============================================================================= # Python PRIDE implementation # Version: 1.0 # Date: 23/04/2015 @@ -8,6 +11,15 @@ # Copyright (C) 2015 Camil Staps (info@camilstaps.nl) # # ============================================================================= +# +# PRIDE is a modern (2014) lightweight block cipher optimized for 8-bit +# microcontrollers, that "significantly outperforms all existing block ciphers +# of similar key-sizes, with the exception of SIMON and SPECK". Its design +# rationale is described in Block Ciphers -- Focus On The Linear Layer (feat. +# PRIDE); Martin R. Albrecht, Benedikt Driessen, Elif Bilge Kavun, Gregor +# Leander, Christof Paar, Tolga Yalçın: https://eprint.iacr.org/2014/453 +# +# ============================================================================= class Pride: |