Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 183 → Rev 184

/relevation/ext/cryptopy-1.2.5.ascii_copyright.patch
0,0 → 1,592
diff -uNr cryptopy-1.2.5/binascii_plus.py cryptopy-1.2.5.ascii/binascii_plus.py
--- cryptopy-1.2.5/binascii_plus.py 2003-02-22 04:40:29.000000000 +0100
+++ cryptopy-1.2.5.ascii/binascii_plus.py 2011-07-05 14:26:22.956555332 +0200
@@ -2,7 +2,7 @@
Enhanced hex packet input and display
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from binascii import a2b_hex, b2a_hex
diff -uNr cryptopy-1.2.5/crypto/app/__init__.py cryptopy-1.2.5.ascii/crypto/app/__init__.py
--- cryptopy-1.2.5/crypto/app/__init__.py 2003-02-22 18:11:46.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/app/__init__.py 2011-07-05 14:26:22.632561672 +0200
@@ -2,7 +2,7 @@
Sample applications of CryptoPy
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/cipher/aes_cbc.py cryptopy-1.2.5.ascii/crypto/cipher/aes_cbc.py
--- cryptopy-1.2.5/crypto/cipher/aes_cbc.py 2003-02-12 02:54:34.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/aes_cbc.py 2011-07-05 14:26:22.676560804 +0200
@@ -2,7 +2,7 @@
AES_CBC Encryption Algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
2002-06-14
diff -uNr cryptopy-1.2.5/crypto/cipher/aes.py cryptopy-1.2.5.ascii/crypto/cipher/aes.py
--- cryptopy-1.2.5/crypto/cipher/aes.py 2003-02-12 02:51:07.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/aes.py 2011-07-05 14:26:22.708560178 +0200
@@ -5,7 +5,7 @@
The AES algorithm is just Rijndael algorithm restricted to the default
blockSize of 128 bits.
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
2002-06-01
diff -uNr cryptopy-1.2.5/crypto/cipher/aes_sbox_analysis.py cryptopy-1.2.5.ascii/crypto/cipher/aes_sbox_analysis.py
--- cryptopy-1.2.5/crypto/cipher/aes_sbox_analysis.py 2003-02-13 07:26:17.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/aes_sbox_analysis.py 2011-07-05 14:26:22.652561273 +0200
@@ -5,7 +5,7 @@
the number and size of the permutation subgroups in the transformation.
Could be extended to examine any Sbox ...
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
2002-12-05 Added validation of equation form of AES
diff -uNr cryptopy-1.2.5/crypto/cipher/aes_test.py cryptopy-1.2.5.ascii/crypto/cipher/aes_test.py
--- cryptopy-1.2.5/crypto/cipher/aes_test.py 2003-02-12 02:52:39.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/aes_test.py 2011-07-05 14:26:22.700560345 +0200
@@ -3,7 +3,7 @@
Tests for AES encryption algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
import unittest
diff -uNr cryptopy-1.2.5/crypto/cipher/arc4.py cryptopy-1.2.5.ascii/crypto/cipher/arc4.py
--- cryptopy-1.2.5/crypto/cipher/arc4.py 2003-02-12 03:42:18.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/arc4.py 2011-07-05 14:26:22.676560804 +0200
@@ -10,7 +10,7 @@
ftp://ietf.org/draft-kaukonen-cipher-arcfour-03.txt
Generally munged to map to crypto.cipher calling conventions
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
November 5, 2002
diff -uNr cryptopy-1.2.5/crypto/cipher/arc4_test.py cryptopy-1.2.5.ascii/crypto/cipher/arc4_test.py
--- cryptopy-1.2.5/crypto/cipher/arc4_test.py 2003-02-12 03:42:54.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/arc4_test.py 2011-07-05 14:26:22.648561352 +0200
@@ -3,7 +3,7 @@
Tests for arc4 encryption, uses AES for base algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
July 24, 2002
diff -uNr cryptopy-1.2.5/crypto/cipher/base.py cryptopy-1.2.5.ascii/crypto/cipher/base.py
--- cryptopy-1.2.5/crypto/cipher/base.py 2003-02-22 18:00:04.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/base.py 2011-07-05 14:26:22.688560576 +0200
@@ -6,7 +6,7 @@
class was written to make the actual algorithm code more readable and
not for performance.
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
2002-04-25 changed block input
diff -uNr cryptopy-1.2.5/crypto/cipher/cbc.py cryptopy-1.2.5.ascii/crypto/cipher/cbc.py
--- cryptopy-1.2.5/crypto/cipher/cbc.py 2003-02-12 03:05:05.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/cbc.py 2011-07-05 14:26:22.644561441 +0200
@@ -8,7 +8,7 @@
Note !!!! auto IV uses python default random :-(
should not be 'too bad' (tm) for this cbc applicaiton
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.cipher.base import BlockCipher, padWithPadLen, noPadding
diff -uNr cryptopy-1.2.5/crypto/cipher/cbc_test.py cryptopy-1.2.5.ascii/crypto/cipher/cbc_test.py
--- cryptopy-1.2.5/crypto/cipher/cbc_test.py 2003-02-12 03:06:21.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/cbc_test.py 2011-07-05 14:26:22.712560101 +0200
@@ -3,7 +3,7 @@
Tests for cbc encryption, uses AES for base algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/cipher/ccm.py cryptopy-1.2.5.ascii/crypto/cipher/ccm.py
--- cryptopy-1.2.5/crypto/cipher/ccm.py 2003-02-12 03:16:13.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/ccm.py 2011-07-05 14:26:22.704560260 +0200
@@ -7,7 +7,7 @@
integrity check can optionally include unencrypted 'addAuthData'.
CCM requires a nonce that MUST NEVER repeat for a given key.
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.cipher.base import BlockCipherWithIntegrity, noPadding
diff -uNr cryptopy-1.2.5/crypto/cipher/ccm_test.py cryptopy-1.2.5.ascii/crypto/cipher/ccm_test.py
--- cryptopy-1.2.5/crypto/cipher/ccm_test.py 2003-02-12 03:14:50.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/ccm_test.py 2011-07-05 14:26:22.672560893 +0200
@@ -3,7 +3,7 @@
Tests for CCM encryption, uses AES for base algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
July 24, 2002
diff -uNr cryptopy-1.2.5/crypto/cipher/icedoll.py cryptopy-1.2.5.ascii/crypto/cipher/icedoll.py
--- cryptopy-1.2.5/crypto/cipher/icedoll.py 2003-02-12 03:36:22.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/icedoll.py 2011-07-05 14:26:22.680560725 +0200
@@ -12,7 +12,7 @@
Fi = Ek(t,P[i-1]) ; Fi, with i=0 is nonce or a fixed value
C[i] = Fi^Ek(N,P[i]^Fi)
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
June 2002
diff -uNr cryptopy-1.2.5/crypto/cipher/icedoll_test.py cryptopy-1.2.5.ascii/crypto/cipher/icedoll_test.py
--- cryptopy-1.2.5/crypto/cipher/icedoll_test.py 2003-02-12 03:31:59.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/icedoll_test.py 2011-07-05 14:26:22.704560260 +0200
@@ -3,7 +3,7 @@
Tests for icedoll encryption algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.cipher.icedoll import Icedoll
diff -uNr cryptopy-1.2.5/crypto/cipher/__init__.py cryptopy-1.2.5.ascii/crypto/cipher/__init__.py
--- cryptopy-1.2.5/crypto/cipher/__init__.py 2003-02-12 03:28:52.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/__init__.py 2011-07-05 14:26:22.688560576 +0200
@@ -2,7 +2,7 @@
cipher package of CryptoPy
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/cipher/rijndael.py cryptopy-1.2.5.ascii/crypto/cipher/rijndael.py
--- cryptopy-1.2.5/crypto/cipher/rijndael.py 2003-02-12 02:49:50.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/rijndael.py 2011-07-05 14:26:22.668560965 +0200
@@ -6,7 +6,7 @@
match FIPS specification for readability. It is not implemented
for performance.
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
2002-06-01
diff -uNr cryptopy-1.2.5/crypto/cipher/rijndael_test.py cryptopy-1.2.5.ascii/crypto/cipher/rijndael_test.py
--- cryptopy-1.2.5/crypto/cipher/rijndael_test.py 2003-02-12 02:51:56.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/rijndael_test.py 2011-07-05 14:26:22.684560657 +0200
@@ -3,7 +3,7 @@
Tests for the rijndael encryption algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.cipher.rijndael import Rijndael
diff -uNr cryptopy-1.2.5/crypto/cipher/test_all_ciphers.py cryptopy-1.2.5.ascii/crypto/cipher/test_all_ciphers.py
--- cryptopy-1.2.5/crypto/cipher/test_all_ciphers.py 2003-02-22 15:39:53.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/test_all_ciphers.py 2011-07-05 14:26:22.712560101 +0200
@@ -3,7 +3,7 @@
All unit tests in the cipher package
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
import unittest
diff -uNr cryptopy-1.2.5/crypto/cipher/tkip_encr.py cryptopy-1.2.5.ascii/crypto/cipher/tkip_encr.py
--- cryptopy-1.2.5/crypto/cipher/tkip_encr.py 2003-02-18 05:37:14.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/tkip_encr.py 2011-07-05 14:26:22.636561591 +0200
@@ -5,7 +5,7 @@
TKIP uses WEP (ARC4 with crc32) and key mixing
This is only the encryption and not the Michael integrity check!
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
November 2002
diff -uNr cryptopy-1.2.5/crypto/cipher/tkip_encr_test.py cryptopy-1.2.5.ascii/crypto/cipher/tkip_encr_test.py
--- cryptopy-1.2.5/crypto/cipher/tkip_encr_test.py 2003-02-14 08:31:58.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/tkip_encr_test.py 2011-07-05 14:26:22.660561124 +0200
@@ -2,7 +2,7 @@
""" crypto.cipher.tkip_encr_test
Tests for tkip encryption (mpdu only, no Michael)
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
January 2003 May have broken key mixing ...need to validate
diff -uNr cryptopy-1.2.5/crypto/cipher/tkip_fake_crc_test.py cryptopy-1.2.5.ascii/crypto/cipher/tkip_fake_crc_test.py
--- cryptopy-1.2.5/crypto/cipher/tkip_fake_crc_test.py 2003-02-14 20:06:44.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/tkip_fake_crc_test.py 2011-07-05 14:26:22.680560725 +0200
@@ -7,7 +7,7 @@
dissassociation of all sessions when two of these
malicious packets are recieved in a 60 second period.
- Copyright © (c) 2003 by Paul A. Lambert.
+ Copyright (c) 2003 by Paul A. Lambert.
See LICENSE.txt for license terms of this software.
"""
import unittest
diff -uNr cryptopy-1.2.5/crypto/cipher/trolldoll.py cryptopy-1.2.5.ascii/crypto/cipher/trolldoll.py
--- cryptopy-1.2.5/crypto/cipher/trolldoll.py 2003-03-01 02:50:07.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/trolldoll.py 2011-07-05 14:26:22.656561205 +0200
@@ -12,7 +12,7 @@
ALso ... currently just IV .... in test ..
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/cipher/wep.py cryptopy-1.2.5.ascii/crypto/cipher/wep.py
--- cryptopy-1.2.5/crypto/cipher/wep.py 2003-02-12 03:02:17.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/wep.py 2011-07-05 14:26:22.712560101 +0200
@@ -2,7 +2,7 @@
The WEP encryption algorithm used in IEEE 802.11
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
September 2002
diff -uNr cryptopy-1.2.5/crypto/cipher/wep_test.py cryptopy-1.2.5.ascii/crypto/cipher/wep_test.py
--- cryptopy-1.2.5/crypto/cipher/wep_test.py 2003-02-12 03:03:17.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/cipher/wep_test.py 2011-07-05 14:26:22.708560178 +0200
@@ -3,7 +3,7 @@
Tests for wep encryption
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
2002-11-05
diff -uNr cryptopy-1.2.5/crypto/common.py cryptopy-1.2.5.ascii/crypto/common.py
--- cryptopy-1.2.5/crypto/common.py 2003-02-12 02:15:22.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/common.py 2011-07-05 14:26:22.596562379 +0200
@@ -1,7 +1,7 @@
""" crypto.common
Common utility routines for crypto modules
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/entropy/__init__.py cryptopy-1.2.5.ascii/crypto/entropy/__init__.py
--- cryptopy-1.2.5/crypto/entropy/__init__.py 2003-02-22 16:21:20.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/entropy/__init__.py 2011-07-05 14:26:22.728559791 +0200
@@ -2,7 +2,7 @@
Entropy package of CryptoPy
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/entropy/pagingEntropy.py cryptopy-1.2.5.ascii/crypto/entropy/pagingEntropy.py
--- cryptopy-1.2.5/crypto/entropy/pagingEntropy.py 2003-02-22 16:24:03.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/entropy/pagingEntropy.py 2011-07-05 14:26:22.728559791 +0200
@@ -6,7 +6,7 @@
Just an experiment, not recommended for use at this time.
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
import struct
diff -uNr cryptopy-1.2.5/crypto/entropy/prn_rijndael.py cryptopy-1.2.5.ascii/crypto/entropy/prn_rijndael.py
--- cryptopy-1.2.5/crypto/entropy/prn_rijndael.py 2003-02-28 23:21:53.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/entropy/prn_rijndael.py 2011-07-05 14:26:22.724559869 +0200
@@ -4,7 +4,7 @@
The algorithm is based on Section 13.4 of:
"AES Proposal: Rijndael", Joan Daemen, Vincent Rijmen
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/entropy/prn_rijndael_test.py cryptopy-1.2.5.ascii/crypto/entropy/prn_rijndael_test.py
--- cryptopy-1.2.5/crypto/entropy/prn_rijndael_test.py 2003-02-22 17:08:43.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/entropy/prn_rijndael_test.py 2011-07-05 14:26:22.728559791 +0200
@@ -3,7 +3,7 @@
Unit test for prn_rijndael
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/errors.py cryptopy-1.2.5.ascii/crypto/errors.py
--- cryptopy-1.2.5/crypto/errors.py 2003-02-12 02:22:12.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/errors.py 2011-07-05 14:26:22.624561823 +0200
@@ -1,7 +1,7 @@
""" errors
Error classes for cryptographic modules
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/hash/hash.py cryptopy-1.2.5.ascii/crypto/hash/hash.py
--- cryptopy-1.2.5/crypto/hash/hash.py 2003-02-11 07:05:08.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/hash/hash.py 2011-07-05 14:26:22.716560032 +0200
@@ -1,7 +1,7 @@
""" crypto.cipher.hash
Base class for cryptographic hash algorithms
An alternate interface (no 'new').
- Copyright © (c) 2002 by Paul A. Lambert.
+ Copyright (c) 2002 by Paul A. Lambert.
"""
from binascii import b2a_hex
diff -uNr cryptopy-1.2.5/crypto/hash/sha1Hash.py cryptopy-1.2.5.ascii/crypto/hash/sha1Hash.py
--- cryptopy-1.2.5/crypto/hash/sha1Hash.py 2003-02-22 06:36:37.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/hash/sha1Hash.py 2011-07-05 14:26:22.720559950 +0200
@@ -2,7 +2,7 @@
Wrapper for python sha module to support crypo module standard interface
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
import sha
diff -uNr cryptopy-1.2.5/crypto/icedoll_test.py cryptopy-1.2.5.ascii/crypto/icedoll_test.py
--- cryptopy-1.2.5/crypto/icedoll_test.py 2003-02-23 01:36:20.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/icedoll_test.py 2011-07-05 14:26:22.732559719 +0200
@@ -3,7 +3,7 @@
Tests for icedoll encryption algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.cipher.icedoll import Icedoll
diff -uNr cryptopy-1.2.5/crypto/__init__.py cryptopy-1.2.5.ascii/crypto/__init__.py
--- cryptopy-1.2.5/crypto/__init__.py 2003-02-12 02:14:59.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/__init__.py 2011-07-05 14:26:22.732559719 +0200
@@ -1,6 +1,6 @@
""" crypto
CryptoPy - pure python cryptographic libraries
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/keyedHash/__init__.py cryptopy-1.2.5.ascii/crypto/keyedHash/__init__.py
--- cryptopy-1.2.5/crypto/keyedHash/__init__.py 2003-02-22 06:19:05.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/keyedHash/__init__.py 2011-07-05 14:26:22.752559321 +0200
@@ -2,6 +2,6 @@
The keyedHash package.
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/keyedHash/michael.py cryptopy-1.2.5.ascii/crypto/keyedHash/michael.py
--- cryptopy-1.2.5/crypto/keyedHash/michael.py 2003-02-22 06:25:24.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/keyedHash/michael.py 2011-07-05 14:26:22.760559171 +0200
@@ -5,7 +5,7 @@
Michael is a 64-bit MIC, with a design strength of 20 bits.
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from struct import pack, unpack
diff -uNr cryptopy-1.2.5/crypto/keyedHash/michael_test.py cryptopy-1.2.5.ascii/crypto/keyedHash/michael_test.py
--- cryptopy-1.2.5/crypto/keyedHash/michael_test.py 2003-02-22 06:26:30.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/keyedHash/michael_test.py 2011-07-05 14:26:22.740559551 +0200
@@ -3,7 +3,7 @@
Tests of the Michael Message Integrity Check Algorithm
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.keyedHash.michael import Michael
diff -uNr cryptopy-1.2.5/crypto/keyedHash/pbkdf2.py cryptopy-1.2.5.ascii/crypto/keyedHash/pbkdf2.py
--- cryptopy-1.2.5/crypto/keyedHash/pbkdf2.py 2003-02-22 06:30:07.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/keyedHash/pbkdf2.py 2011-07-05 14:26:22.740559551 +0200
@@ -6,7 +6,7 @@
This function is used for IEEE 802.11/WPA passphrase to key hashing
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
from crypto.keyedHash.hmacHash import HMAC_SHA1
diff -uNr cryptopy-1.2.5/crypto/keyedHash/pbkdf2_test.py cryptopy-1.2.5.ascii/crypto/keyedHash/pbkdf2_test.py
--- cryptopy-1.2.5/crypto/keyedHash/pbkdf2_test.py 2003-02-22 06:31:10.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/keyedHash/pbkdf2_test.py 2011-07-05 14:26:22.752559321 +0200
@@ -3,7 +3,7 @@
Unit tests for crypto.keyedHash.pbkdf2
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/passwords/__init__.py cryptopy-1.2.5.ascii/crypto/passwords/__init__.py
--- cryptopy-1.2.5/crypto/passwords/__init__.py 2003-02-22 17:21:10.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/passwords/__init__.py 2011-07-05 14:26:22.736559630 +0200
@@ -2,6 +2,6 @@
crypto.passwords package
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/crypto/passwords/passwordfactory.py cryptopy-1.2.5.ascii/crypto/passwords/passwordfactory.py
--- cryptopy-1.2.5/crypto/passwords/passwordfactory.py 2003-02-22 17:20:04.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/passwords/passwordfactory.py 2011-07-05 14:26:22.736559630 +0200
@@ -3,7 +3,7 @@
Python classes to create and recover passwords. Currently contains
simple password generation. <need to merge the dictionary based pws>
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
August 14, 2002
diff -uNr cryptopy-1.2.5/crypto/passwords/passwordfactory_test.py cryptopy-1.2.5.ascii/crypto/passwords/passwordfactory_test.py
--- cryptopy-1.2.5/crypto/passwords/passwordfactory_test.py 2003-02-22 17:20:24.000000000 +0100
+++ cryptopy-1.2.5.ascii/crypto/passwords/passwordfactory_test.py 2011-07-05 14:26:22.736559630 +0200
@@ -3,7 +3,7 @@
Test classes for password generation
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
import unittest
diff -uNr cryptopy-1.2.5/fmath/__init__.py cryptopy-1.2.5.ascii/fmath/__init__.py
--- cryptopy-1.2.5/fmath/__init__.py 2003-02-22 04:26:23.000000000 +0100
+++ cryptopy-1.2.5.ascii/fmath/__init__.py 2011-07-05 14:26:22.944555560 +0200
@@ -1,5 +1,5 @@
""" fmath module
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/fmath/prime.py cryptopy-1.2.5.ascii/fmath/prime.py
--- cryptopy-1.2.5/fmath/prime.py 2003-03-03 04:19:28.000000000 +0100
+++ cryptopy-1.2.5.ascii/fmath/prime.py 2011-07-05 14:26:22.944555560 +0200
@@ -2,7 +2,7 @@
Start of prime number routines. Rabin-miller test works, more to come later.
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/fmath/primes_to_5k.py cryptopy-1.2.5.ascii/fmath/primes_to_5k.py
--- cryptopy-1.2.5/fmath/primes_to_5k.py 2003-03-03 04:16:09.000000000 +0100
+++ cryptopy-1.2.5.ascii/fmath/primes_to_5k.py 2011-07-05 14:26:22.940555642 +0200
@@ -3,7 +3,7 @@
All of the prime numbers below 5000
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
primes_to_5k = [ 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43,
diff -uNr cryptopy-1.2.5/fmath/prime_test.py cryptopy-1.2.5.ascii/fmath/prime_test.py
--- cryptopy-1.2.5/fmath/prime_test.py 2003-03-03 05:05:40.000000000 +0100
+++ cryptopy-1.2.5.ascii/fmath/prime_test.py 2011-07-05 14:26:22.940555642 +0200
@@ -3,7 +3,7 @@
Test for prime number routines
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
import unittest
diff -uNr cryptopy-1.2.5/__init__.py cryptopy-1.2.5.ascii/__init__.py
--- cryptopy-1.2.5/__init__.py 2003-02-22 05:02:19.000000000 +0100
+++ cryptopy-1.2.5.ascii/__init__.py 2011-07-05 14:26:22.948555483 +0200
@@ -1,6 +1,6 @@
""" cryptopy
CryptoPy - pure python cryptographic libraries
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""
diff -uNr cryptopy-1.2.5/LICENSE.txt cryptopy-1.2.5.ascii/LICENSE.txt
--- cryptopy-1.2.5/LICENSE.txt 2003-02-22 04:11:33.000000000 +0100
+++ cryptopy-1.2.5.ascii/LICENSE.txt 2011-07-05 14:26:22.764559086 +0200
@@ -1,5 +1,5 @@
The CryptoPy Artistic License Version 1.0
-Copyright © (c) 2002 by Paul A. Lambert
+Copyright (c) 2002 by Paul A. Lambert
Derived from the "Artistic License" at "OpenSource.org".
PREAMBLE
diff -uNr cryptopy-1.2.5/setup.py cryptopy-1.2.5.ascii/setup.py
--- cryptopy-1.2.5/setup.py 2003-03-03 05:31:42.000000000 +0100
+++ cryptopy-1.2.5.ascii/setup.py 2011-07-05 14:26:22.948555483 +0200
@@ -12,7 +12,7 @@
See http://software-carpentry.codesourcery.com/entries/build/Distutils/Distutils.html
for more information about this file
- Copyright © (c) 2002 by Paul A. Lambert
+ Copyright (c) 2002 by Paul A. Lambert
Read LICENSE.txt for license information.
"""