diff options
author | Camil Staps | 2015-04-23 09:37:53 +0200 |
---|---|---|
committer | Camil Staps | 2015-04-23 09:37:53 +0200 |
commit | be7436a6c971bf28e0ccd1bd8ff3c04bc05ab2bb (patch) | |
tree | c2dd3372764c8d62ffc62039f1a0f20154366ddb | |
parent | Fixed encoding issue (diff) |
Comments
-rw-r--r-- | pypride.py | 12 | ||||
-rwxr-xr-x[-rw-r--r--] | test-vectors.py | 0 |
2 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: diff --git a/test-vectors.py b/test-vectors.py index 7deb8d4..7deb8d4 100644..100755 --- a/test-vectors.py +++ b/test-vectors.py |