Skip to content

Commit

Permalink
First push of Funf Analyze script for v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
codys committed Apr 4, 2013
1 parent dec9d45 commit c0bbfc2
Show file tree
Hide file tree
Showing 305 changed files with 41,372 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pyc
17 changes: 17 additions & 0 deletions funf_analyze/Crypto/.svn/all-wcprops
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
K 25
svn:wc:ra_dav:version-url
V 50
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto
END
pct_warnings.py
K 25
svn:wc:ra_dav:version-url
V 66
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/pct_warnings.py
END
__init__.py
K 25
svn:wc:ra_dav:version-url
V 62
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/__init__.py
END
124 changes: 124 additions & 0 deletions funf_analyze/Crypto/.svn/entries
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
10

dir
105
https://svn.media.mit.edu/r/funf-os/funf_launch_viz/src/Crypto
https://svn.media.mit.edu/r/funf-os



2011-10-06T22:31:54.265837Z
105
[email protected]


svn:special svn:externals svn:needs-lock











77ced3a8-bc19-4a15-9298-df148d924c43






0

Cipher
dir

Hash
dir

Protocol
dir

PublicKey
dir

Random
dir

SelfTest
dir

Util
dir

__init__.py
file




2011-10-06T21:24:22.000000Z
cbad1b9e3fbc03574e6a90d7bd75662a
2011-10-06T22:31:54.265837Z
105
[email protected]





















2042

pct_warnings.py
file




2011-10-06T21:24:22.000000Z
611ac5d444961f3e4a4e2c804fe85300
2011-10-06T22:31:54.265837Z
105
[email protected]





















2178

46 changes: 46 additions & 0 deletions funf_analyze/Crypto/.svn/text-base/__init__.py.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# -*- coding: utf-8 -*-
#
# ===================================================================
# The contents of this file are dedicated to the public domain. To
# the extent that dedication to the public domain is not available,
# everyone is granted a worldwide, perpetual, royalty-free,
# non-exclusive license to exercise all rights associated with the
# contents of this file for any purpose whatsoever.
# No rights are reserved.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# ===================================================================

"""Python Cryptography Toolkit

A collection of cryptographic modules implementing various algorithms
and protocols.

Subpackages:
Crypto.Cipher Secret-key encryption algorithms (AES, DES, ARC4)
Crypto.Hash Hashing algorithms (MD5, SHA, HMAC)
Crypto.Protocol Cryptographic protocols (Chaffing, all-or-nothing
transform). This package does not contain any
network protocols.
Crypto.PublicKey Public-key encryption and signature algorithms
(RSA, DSA)
Crypto.Util Various useful modules and functions (long-to-string
conversion, random number generation, number
theoretic functions)
"""

__all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util']

__version__ = '2.3' # See also below and setup.py
__revision__ = "$Id$"

# New software should look at this instead of at __version__ above.
version_info = (2, 1, 0, 'final', 0) # See also above and setup.py

57 changes: 57 additions & 0 deletions funf_analyze/Crypto/.svn/text-base/pct_warnings.py.svn-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# -*- coding: ascii -*-
#
# pct_warnings.py : PyCrypto warnings file
#
# Written in 2008 by Dwayne C. Litzenberger <[email protected]>
#
# ===================================================================
# The contents of this file are dedicated to the public domain. To
# the extent that dedication to the public domain is not available,
# everyone is granted a worldwide, perpetual, royalty-free,
# non-exclusive license to exercise all rights associated with the
# contents of this file for any purpose whatsoever.
# No rights are reserved.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# ===================================================================

#
# Base classes. All our warnings inherit from one of these in order to allow
# the user to specifically filter them.
#

class CryptoWarning(Warning):
"""Base class for PyCrypto warnings"""

class CryptoDeprecationWarning(DeprecationWarning, CryptoWarning):
"""Base PyCrypto DeprecationWarning class"""

class CryptoRuntimeWarning(RuntimeWarning, CryptoWarning):
"""Base PyCrypto RuntimeWarning class"""

#
# Warnings that we might actually use
#

class RandomPool_DeprecationWarning(CryptoDeprecationWarning):
"""Issued when Crypto.Util.randpool.RandomPool is instantiated."""

class ClockRewindWarning(CryptoRuntimeWarning):
"""Warning for when the system clock moves backwards."""

class GetRandomNumber_DeprecationWarning(CryptoDeprecationWarning):
"""Issued when Crypto.Util.number.getRandomNumber is invoked."""

# By default, we want this warning to be shown every time we compensate for
# clock rewinding.
import warnings as _warnings
_warnings.filterwarnings('always', category=ClockRewindWarning, append=1)

# vim:set ts=4 sw=4 sts=4 expandtab:
59 changes: 59 additions & 0 deletions funf_analyze/Crypto/Cipher/.svn/all-wcprops
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
K 25
svn:wc:ra_dav:version-url
V 57
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher
END
Blowfish.so
K 25
svn:wc:ra_dav:version-url
V 69
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/Blowfish.so
END
__init__.py
K 25
svn:wc:ra_dav:version-url
V 69
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/__init__.py
END
ARC4.so
K 25
svn:wc:ra_dav:version-url
V 65
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/ARC4.so
END
DES.so
K 25
svn:wc:ra_dav:version-url
V 64
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/DES.so
END
DES3.so
K 25
svn:wc:ra_dav:version-url
V 65
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/DES3.so
END
ARC2.so
K 25
svn:wc:ra_dav:version-url
V 65
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/ARC2.so
END
AES.so
K 25
svn:wc:ra_dav:version-url
V 64
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/AES.so
END
CAST.so
K 25
svn:wc:ra_dav:version-url
V 65
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/CAST.so
END
XOR.so
K 25
svn:wc:ra_dav:version-url
V 64
/r/funf-os/!svn/ver/105/funf_launch_viz/src/Crypto/Cipher/XOR.so
END
Loading

0 comments on commit c0bbfc2

Please sign in to comment.