| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: python-crypto-debuginfo | Distribution: Fedora Project |
| Version: 2.6 | Vendor: Fedora Project |
| Release: 1.fc17 | Build date: Fri May 25 16:14:39 2012 |
| Group: Development/Debug | Build host: x86-04.phx2.fedoraproject.org |
| Size: 2728242 | Source RPM: python-crypto-2.6-1.fc17.src.rpm |
| Packager: Fedora Project | |
| Url: http://www.pycrypto.org/ | |
| Summary: Debug information for package python-crypto | |
This package provides debug information for package python-crypto. Debug information is useful when developing applications that use this package or when debugging this package.
Public Domain and Python
* Thu May 24 2012 Paul Howarth <paul@city-fan.org> - 2.6-1
- Update to 2.6
- Fix insecure ElGamal key generation (launchpad bug #985164, CVE-2012-2417)
- Huge documentation cleanup
- Added more tests, including test vectors from NIST 800-38A
- Remove broken MODE_PGP, which never actually worked properly
- A new mode, MODE_OPENPGP, has been added for people wishing to write
OpenPGP implementations (see also launchpad bug #996814)
- Fix: getPrime with invalid input causes Python to abort with fatal error
(launchpad bug #988431)
- Fix: Segfaults within error-handling paths (launchpad bug #934294)
- Fix: Block ciphers allow empty string as IV (launchpad bug #997464)
- Fix DevURandomRNG to work with Python3's new I/O stack
- Remove automagic dependencies on libgmp and libmpir; let the caller
disable them using args
- Many other minor bug fixes and improvements
- Drop upstream patches
* Sat Feb 18 2012 Paul Howarth <paul@city-fan.org> - 2.5-2
- Add upstream fixes for issues found by Dave Malcolm's experimental static
analysis tool (#790584)
* Mon Jan 16 2012 Paul Howarth <paul@city-fan.org> - 2.5-1
- Update to 2.5
- Added PKCS#1 encryption schemes (v1.5 and OAEP); we now have a decent,
easy-to-use non-textbook RSA implementation
- Added PKCS#1 signature schemes (v1.5 and PSS); v1.5 required some
extensive changes to Hash modules to contain the algorithm-specific ASN.1
OID, and to that end we now always have a (thin) Python module to hide the
one in pure C
- Added 2 standard Key Derivation Functions (PBKDF1 and PBKDF2)
- Added export/import of RSA keys in OpenSSH and PKCS#8 formats
- Added password-protected export/import of RSA keys (one old method for
PKCS#8 PEM only)
- Added ability to generate RSA key pairs with configurable public
exponent e
- Added ability to construct an RSA key pair even if only the private
exponent d is known, and not p and q
- Added SHA-2 C source code (fully from Lorenz Quack)
- Unit tests for all the above
- Updates to documentation (both inline and in Doc/pycrypt.rst)
- Minor bug fixes (setup.py and tests)
- Upstream no longer ships python-3-changes.txt
* Sat Jan 07 2012 Paul Howarth <paul@city-fan.org> - 2.4.1-2
- Rebuild with gcc 4.7
* Mon Nov 07 2011 Paul Howarth <paul@city-fan.org> - 2.4.1-1
- Update to 2.4.1
- Fix "error: Setup script exited with error: src/config.h: No such file or
directory" when installing via easy_install
* Wed Oct 26 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.4-2.1
- Rebuild with new gmp without compat lib
* Tue Oct 25 2011 Paul Howarth <paul@city-fan.org> - 2.4-2
- Add python3-crypto subpackage (based on patch from Dave Malcolm - #748529)
* Mon Oct 24 2011 Paul Howarth <paul@city-fan.org> - 2.4-1
- Update to 2.4
- Python 3 support! PyCrypto now supports every version of Python from 2.1
through to 3.2
- Timing-attack countermeasures in _fastmath: when built against libgmp
version 5 or later, we use mpz_powm_sec instead of mpz_powm, which should
prevent the timing attack described by Geremy Condra at PyCon 2011
- New hash modules (for Python ≥ 2.5 only): SHA224, SHA384 and SHA512
- Configuration using GNU autoconf, which should help fix a bunch of build
issues
- Support using MPIR as an alternative to GMP
- Improve the test command in setup.py, by allowing tests to be performed on
a single sub-package or module only
- Fix double-decref of "counter" when Cipher object initialization fails
- Apply patches from Debian's python-crypto 2.3-3 package:
- fix-RSA-generate-exception.patch
- epydoc-exclude-introspect.patch
- no-usr-local.patch
- Fix launchpad bug #702835: "Import key code is not compatible with GMP
library"
- More tests, better documentation, various bugfixes
- Update patch for imposing our own compiler optimization flags
- Drop lib64 patch, no longer needed
- No longer need to fix up permissions and remove shellbangs
* Wed Oct 12 2011 Peter Schiffer <pschiffe@redhat.com> - 2.3-5.1
- Rebuild with new gmp
* Wed May 11 2011 Paul Howarth <paul@city-fan.org> - 2.3-5
- Upstream rolled new tarball with top-level directory restored
- Nobody else likes macros for commands
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Wed Sep 29 2010 jkeating - 2.3-3
- Rebuilt for gcc bug 634757
* Fri Sep 24 2010 David Malcolm <dmalcolm@redhat.com> - 2.3-2
- Add "-fno-strict-aliasing" to compilation flags
* Fri Aug 27 2010 Paul Howarth <paul@city-fan.org> - 2.3-1
- Update to 2.3
- Fix NameError when attempting to use deprecated getRandomNumber() function
- _slowmath: Compute RSA u parameter when it's not given to RSA.construct;
this makes _slowmath behave the same as _fastmath in this regard
- Make RSA.generate raise a more user-friendly exception message when the
user tries to generate a bogus-length key
- Add -c option to %setup because upstream tarball has dropped the top-level
directory
- Run benchmark as part of %check if we have python 2.4 or later
- BR: python2-devel rather than just python-devel
- Add patch to make sure we can find libgmp in 64-bit multilib environments
* Tue Aug 03 2010 Paul Howarth <paul@city-fan.org> - 2.2-1
- Update to 2.2
- Deprecated Crypto.Util.number.getRandomNumber()
- It's been replaced by getRandomNBitInteger and getRandomInteger
- Better isPrime() and getPrime() implementations
- getStrongPrime() implementation for generating RSA primes
- Support for importing and exporting RSA keys in DER and PEM format
- Fix PyCrypto when floor division (python -Qnew) is enabled
- When building using gcc, use -std=c99 for compilation
- Update optflags patch
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
* Tue Feb 16 2010 Paul Howarth <paul@city-fan.org> - 2.1.0-1
- Update to 2.1.0 (see ChangeLog for details)
- Remove patches (no longer needed)
- Use new upstream URLs
- Upstream has replaced LICENSE with LEGAL/ and COPYRIGHT
- Clarify that license is mostly Public Domain, partly Python
- Add %check section and run the test suite in it
- Remove upstream's fiddling with compiler optimization flags so we get
usable debuginfo
- Filter out unwanted provides for python shared objects
- Tidy up egg-info handling
- Simplify %files list
- Pacify rpmlint as much as is reasonable
- Add dist tag
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-19
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-18
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Fri Feb 13 2009 Stewart Adam <s.adam at diffingo.com> - 2.0.1-17
- Use patches in upstream git to fix #484473
* Fri Feb 13 2009 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.0.1-16.1
- add patch to fix #485298 / CVE-2009-0544
* Sat Feb 07 2009 Stewart Adam <s.adam at diffingo.com> - 2.0.1-15.1
- Oops, actually apply the patch
- Modify patch so modules remain compatible with PEP 247
* Sat Feb 07 2009 Stewart Adam <s.adam at diffingo.com> - 2.0.1-15
- Add patch to hashlib instead of deprecated md5 and sha modules (#484473)
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.1-14.1
- Rebuild for Python 2.6
* Sun May 04 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.0.1-13
- provide pycrypto
* Sat Feb 09 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 2.0.1-12
- rebuilt
* Fri Jan 04 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.0.1-11
- egg-info file in python_sitearch and not in python_sitelib
* Fri Jan 04 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.0.1-10
- ship egg-file
* Tue Aug 21 2007 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.0.1-9
- Remove the old and outdated python-abi hack
* Fri Aug 03 2007 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info>
- Update License field due to the "Licensing guidelines changes"
* Mon Jun 04 2007 David Woodhouse <dwmw2@infradead.org> - 2.0.1-8
- Fix libdir handling so it works on more arches than x86_64
* Wed Apr 18 2007 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 2.0.1-7
- Fix typo
* Wed Apr 18 2007 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 2.0.1-6
- Remove dist
- rebuild, because the older version was much bigger, as it was build when
distutils was doing static links of libpython
* Sat Dec 09 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 2.0.1-5
- Rebuild for python 2.5
* Thu Sep 07 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 2.0.1-4
- Don't ghost pyo files (#205408)
* Tue Aug 29 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 2.0.1-3
- Rebuild for Fedora Extras 6
* Mon Feb 13 2006 Thorsten Leemhuis <fedora[AT]leemhuis.info> - 2.0.1-2
- Rebuild for Fedora Extras 5
* Wed Aug 17 2005 Thorsten Leemhuis <fedora at leemhuis dot info> - 0:2.0.1-1
- Update to 2.0.1
- Use Dist
- Drop python-crypto-64bit-unclean.patch, similar patch was applied
upstream
* Thu May 05 2005 Thorsten Leemhuis <fedora at leemhuis dot info> - 0:2.0-4
- add python-crypto-64bit-unclean.patch (#156173)
* Mon Mar 21 2005 Seth Vidal <skvidal at phy.duke.edu> - 0:2.0-3
- iterate release for build on python 2.4 based systems
* Sat Dec 18 2004 Thorsten Leemhuis <fedora at leemhuis dot info> - 0:2.0-2
- Fix build on x86_64: use python_sitearch for files and patch source
to find gmp
* Thu Aug 26 2004 Thorsten Leemhuis <fedora at leemhuis dot info> - 0:2.0-0.fdr.1
- Update to 2.00
* Fri Aug 13 2004 Ville Skytta <ville.skytta at iki.fi> - 0:1.9-0.fdr.6.a6
- Don't use get_python_version(), it's available in Python >= 2.3 only.
* Thu Aug 12 2004 Thorsten Leemhuis <fedora at leemhuis dot info> 0:1.9-0.fdr.5.a6
- Own dir python_sitearch/Crypto/
* Wed Aug 11 2004 Thorsten Leemhuis <fedora at leemhuis dot info> 0:1.9-0.fdr.4.a6
- Match python spec template more
* Sat Jul 17 2004 Thorsten Leemhuis <fedora at leemhuis dot info> 0:1.9-0.fdr.3.a6
- Own _libdir/python/site-packages/Crypto/
* Wed Mar 24 2004 Panu Matilainen <pmatilai@welho.com> 0.3.2-0.fdr.2.a6
- generate .pyo files during install
- require exact version of python used to build the package
- include more docs + demos
- fix dependency on /usr/local/bin/python
- use fedora.us style buildroot
- buildrequires gmp-devel
- use description from README
* Sun Jan 11 2004 Ryan Boder <icanoop@bitwiser.org> 0.3.2-0.fdr.1.a6
- Initial build.
/usr/lib/debug /usr/lib/debug/.build-id /usr/lib/debug/.build-id/00 /usr/lib/debug/.build-id/00/c4db0c2ec858725d8b49c2f6830eb28c7ac61e /usr/lib/debug/.build-id/00/c4db0c2ec858725d8b49c2f6830eb28c7ac61e.debug /usr/lib/debug/.build-id/1c /usr/lib/debug/.build-id/1c/b1d8276d3e6ebf57c5cfe799d31e257fba3bd3 /usr/lib/debug/.build-id/1c/b1d8276d3e6ebf57c5cfe799d31e257fba3bd3.debug /usr/lib/debug/.build-id/2b /usr/lib/debug/.build-id/2b/29904e2947ff25f10efdd9c2badd1c4204ac3b /usr/lib/debug/.build-id/2b/29904e2947ff25f10efdd9c2badd1c4204ac3b.debug /usr/lib/debug/.build-id/37 /usr/lib/debug/.build-id/37/4d6c3ea64698abf349f77adc9c334153cbea2f /usr/lib/debug/.build-id/37/4d6c3ea64698abf349f77adc9c334153cbea2f.debug /usr/lib/debug/.build-id/37/7a14cf2c523809a05aa27cc3ebd803190f7db1 /usr/lib/debug/.build-id/37/7a14cf2c523809a05aa27cc3ebd803190f7db1.debug /usr/lib/debug/.build-id/4c /usr/lib/debug/.build-id/4c/72833fe114c799ac35c6d49899eeef70541a76 /usr/lib/debug/.build-id/4c/72833fe114c799ac35c6d49899eeef70541a76.debug /usr/lib/debug/.build-id/53 /usr/lib/debug/.build-id/53/9c6ffda5f8a70433d469913330a63547f53f53 /usr/lib/debug/.build-id/53/9c6ffda5f8a70433d469913330a63547f53f53.debug /usr/lib/debug/.build-id/57 /usr/lib/debug/.build-id/57/125cbe127e2b895e714e2b99a6e0c538ef32ff /usr/lib/debug/.build-id/57/125cbe127e2b895e714e2b99a6e0c538ef32ff.debug /usr/lib/debug/.build-id/5c /usr/lib/debug/.build-id/5c/89fba56e755a3bcce3fb057106804fb2f4cd89 /usr/lib/debug/.build-id/5c/89fba56e755a3bcce3fb057106804fb2f4cd89.debug /usr/lib/debug/.build-id/66 /usr/lib/debug/.build-id/66/9cddcb6de742dc1c98b9ae6453c2f6dbbadad3 /usr/lib/debug/.build-id/66/9cddcb6de742dc1c98b9ae6453c2f6dbbadad3.debug /usr/lib/debug/.build-id/69 /usr/lib/debug/.build-id/69/94c634855247c4a3f2ceebe612e9e11c27fe60 /usr/lib/debug/.build-id/69/94c634855247c4a3f2ceebe612e9e11c27fe60.debug /usr/lib/debug/.build-id/6a /usr/lib/debug/.build-id/6a/3941d4e0821f56e42809215f1acef9f5abd6b2 /usr/lib/debug/.build-id/6a/3941d4e0821f56e42809215f1acef9f5abd6b2.debug /usr/lib/debug/.build-id/75 /usr/lib/debug/.build-id/75/9dc15288dbf31d86de7c98c7849b39355ef63f /usr/lib/debug/.build-id/75/9dc15288dbf31d86de7c98c7849b39355ef63f.debug /usr/lib/debug/.build-id/7d /usr/lib/debug/.build-id/7d/024b390888a5750e85096b242511545b332354 /usr/lib/debug/.build-id/7d/024b390888a5750e85096b242511545b332354.debug /usr/lib/debug/.build-id/7f /usr/lib/debug/.build-id/7f/3129bc48276437f66b9134098ba8e34ceb2e6b /usr/lib/debug/.build-id/7f/3129bc48276437f66b9134098ba8e34ceb2e6b.debug /usr/lib/debug/.build-id/86 /usr/lib/debug/.build-id/86/23039b2db5d8a95901e829b1721d2c875037d4 /usr/lib/debug/.build-id/86/23039b2db5d8a95901e829b1721d2c875037d4.debug /usr/lib/debug/.build-id/8c /usr/lib/debug/.build-id/8c/b001cb62c64719dff0d4f7afbd8ea004c81598 /usr/lib/debug/.build-id/8c/b001cb62c64719dff0d4f7afbd8ea004c81598.debug /usr/lib/debug/.build-id/90 /usr/lib/debug/.build-id/90/cf36c8317706b40b1bd9f54dc6f4617af6cf1b /usr/lib/debug/.build-id/90/cf36c8317706b40b1bd9f54dc6f4617af6cf1b.debug /usr/lib/debug/.build-id/92 /usr/lib/debug/.build-id/92/e10845be6844ae16c76b6f2937741bffb368c6 /usr/lib/debug/.build-id/92/e10845be6844ae16c76b6f2937741bffb368c6.debug /usr/lib/debug/.build-id/93 /usr/lib/debug/.build-id/93/49c0a30e669c88db969aaedcea80bbcbe76267 /usr/lib/debug/.build-id/93/49c0a30e669c88db969aaedcea80bbcbe76267.debug /usr/lib/debug/.build-id/9a /usr/lib/debug/.build-id/9a/fc6d7439fc7793b5ef5f710b91e00505a7fd7c /usr/lib/debug/.build-id/9a/fc6d7439fc7793b5ef5f710b91e00505a7fd7c.debug /usr/lib/debug/.build-id/9d /usr/lib/debug/.build-id/9d/4cdc243b67170821825278ea4db9476c694856 /usr/lib/debug/.build-id/9d/4cdc243b67170821825278ea4db9476c694856.debug /usr/lib/debug/.build-id/a2 /usr/lib/debug/.build-id/a2/cb209c5fe1aedcb34533a2fa935dc58834babe /usr/lib/debug/.build-id/a2/cb209c5fe1aedcb34533a2fa935dc58834babe.debug /usr/lib/debug/.build-id/a5 /usr/lib/debug/.build-id/a5/582c06cfdafe222f0dd0fc016ed73cef891475 /usr/lib/debug/.build-id/a5/582c06cfdafe222f0dd0fc016ed73cef891475.debug /usr/lib/debug/.build-id/a5/e6f785f1bfb707d21ee41852057ed5ead8ffee /usr/lib/debug/.build-id/a5/e6f785f1bfb707d21ee41852057ed5ead8ffee.debug /usr/lib/debug/.build-id/a7 /usr/lib/debug/.build-id/a7/d47f2bdd46c679fc296ddd93cae63f538db6fe /usr/lib/debug/.build-id/a7/d47f2bdd46c679fc296ddd93cae63f538db6fe.debug /usr/lib/debug/.build-id/af /usr/lib/debug/.build-id/af/0fd029444fa57091f7f8601aad2829a02b19db /usr/lib/debug/.build-id/af/0fd029444fa57091f7f8601aad2829a02b19db.debug /usr/lib/debug/.build-id/b0 /usr/lib/debug/.build-id/b0/30368b7585e3fe5570680bd74a5c869addf732 /usr/lib/debug/.build-id/b0/30368b7585e3fe5570680bd74a5c869addf732.debug /usr/lib/debug/.build-id/b6 /usr/lib/debug/.build-id/b6/a87bca6c5ca5bd07a2e5bd144e491e4c08cbda /usr/lib/debug/.build-id/b6/a87bca6c5ca5bd07a2e5bd144e491e4c08cbda.debug /usr/lib/debug/.build-id/bf /usr/lib/debug/.build-id/bf/6af92189fed754752891fa5553e09b3e057453 /usr/lib/debug/.build-id/bf/6af92189fed754752891fa5553e09b3e057453.debug /usr/lib/debug/.build-id/c8 /usr/lib/debug/.build-id/c8/89675141dc96257dbd0fe42b1b66d4903a138a /usr/lib/debug/.build-id/c8/89675141dc96257dbd0fe42b1b66d4903a138a.debug /usr/lib/debug/.build-id/d2 /usr/lib/debug/.build-id/d2/c65b4a836e00e5ffaef5eaf60ea60a1b70a0ea /usr/lib/debug/.build-id/d2/c65b4a836e00e5ffaef5eaf60ea60a1b70a0ea.debug /usr/lib/debug/.build-id/e5 /usr/lib/debug/.build-id/e5/d57e7dfd4fcabdbdeb6ea62a4a1f1e94bd1eaf /usr/lib/debug/.build-id/e5/d57e7dfd4fcabdbdeb6ea62a4a1f1e94bd1eaf.debug /usr/lib/debug/.build-id/e8 /usr/lib/debug/.build-id/e8/4fd6172800d711c4d904ccef0cf0b62495b7ce /usr/lib/debug/.build-id/e8/4fd6172800d711c4d904ccef0cf0b62495b7ce.debug /usr/lib/debug/.build-id/ed /usr/lib/debug/.build-id/ed/3d0636c761721e580535163e6e9020968aa41a /usr/lib/debug/.build-id/ed/3d0636c761721e580535163e6e9020968aa41a.debug /usr/lib/debug/.build-id/f5 /usr/lib/debug/.build-id/f5/f2f061243f89c6b419dcf6461c5c2fa6eba01b /usr/lib/debug/.build-id/f5/f2f061243f89c6b419dcf6461c5c2fa6eba01b.debug /usr/lib/debug/usr /usr/lib/debug/usr/lib64 /usr/lib/debug/usr/lib64/python2.7 /usr/lib/debug/usr/lib64/python2.7/site-packages /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher/_AES.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher/_ARC2.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher/_ARC4.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher/_Blowfish.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher/_CAST.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher/_DES.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher/_DES3.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Cipher/_XOR.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Hash /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Hash/_MD2.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Hash/_MD4.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Hash/_RIPEMD160.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Hash/_SHA224.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Hash/_SHA256.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Hash/_SHA384.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Hash/_SHA512.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/PublicKey /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/PublicKey/_fastmath.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Util /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Util/_counter.so.debug /usr/lib/debug/usr/lib64/python2.7/site-packages/Crypto/Util/strxor.so.debug /usr/lib/debug/usr/lib64/python3.2 /usr/lib/debug/usr/lib64/python3.2/site-packages /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher/_AES.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher/_ARC2.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher/_ARC4.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher/_Blowfish.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher/_CAST.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher/_DES.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher/_DES3.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Cipher/_XOR.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Hash /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Hash/_MD2.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Hash/_MD4.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Hash/_RIPEMD160.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Hash/_SHA224.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Hash/_SHA256.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Hash/_SHA384.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Hash/_SHA512.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/PublicKey /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/PublicKey/_fastmath.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Util /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Util/_counter.cpython-32mu.so.debug /usr/lib/debug/usr/lib64/python3.2/site-packages/Crypto/Util/strxor.cpython-32mu.so.debug /usr/src/debug/pycrypto-2.6 /usr/src/debug/pycrypto-2.6/src /usr/src/debug/pycrypto-2.6/src/AES.c /usr/src/debug/pycrypto-2.6/src/ARC2.c /usr/src/debug/pycrypto-2.6/src/ARC4.c /usr/src/debug/pycrypto-2.6/src/Blowfish-tables.h /usr/src/debug/pycrypto-2.6/src/Blowfish.c /usr/src/debug/pycrypto-2.6/src/CAST.c /usr/src/debug/pycrypto-2.6/src/DES.c /usr/src/debug/pycrypto-2.6/src/MD2.c /usr/src/debug/pycrypto-2.6/src/MD4.c /usr/src/debug/pycrypto-2.6/src/RIPEMD160.c /usr/src/debug/pycrypto-2.6/src/SHA224.c /usr/src/debug/pycrypto-2.6/src/SHA256.c /usr/src/debug/pycrypto-2.6/src/SHA384.c /usr/src/debug/pycrypto-2.6/src/SHA512.c /usr/src/debug/pycrypto-2.6/src/XOR.c /usr/src/debug/pycrypto-2.6/src/_counter.c /usr/src/debug/pycrypto-2.6/src/_counter.h /usr/src/debug/pycrypto-2.6/src/_fastmath.c /usr/src/debug/pycrypto-2.6/src/block_template.c /usr/src/debug/pycrypto-2.6/src/cast5.c /usr/src/debug/pycrypto-2.6/src/hash_SHA2.h /usr/src/debug/pycrypto-2.6/src/hash_SHA2_template.c /usr/src/debug/pycrypto-2.6/src/hash_template.c /usr/src/debug/pycrypto-2.6/src/libtom /usr/src/debug/pycrypto-2.6/src/libtom/tomcrypt.h /usr/src/debug/pycrypto-2.6/src/libtom/tomcrypt_cipher.h /usr/src/debug/pycrypto-2.6/src/libtom/tomcrypt_des.c /usr/src/debug/pycrypto-2.6/src/libtom/tomcrypt_macros.h /usr/src/debug/pycrypto-2.6/src/stream_template.c /usr/src/debug/pycrypto-2.6/src/strxor.c /usr/src/debug/python3-python-crypto-2.6-1.fc17 /usr/src/debug/python3-python-crypto-2.6-1.fc17/src /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/AES.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/ARC2.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/ARC4.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/Blowfish-tables.h /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/Blowfish.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/CAST.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/DES.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/MD2.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/MD4.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/RIPEMD160.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/SHA224.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/SHA256.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/SHA384.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/SHA512.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/XOR.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/_counter.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/_counter.h /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/_fastmath.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/block_template.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/cast5.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/hash_SHA2.h /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/hash_SHA2_template.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/hash_template.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/libtom /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/libtom/tomcrypt.h /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/libtom/tomcrypt_cipher.h /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/libtom/tomcrypt_des.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/libtom/tomcrypt_macros.h /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/stream_template.c /usr/src/debug/python3-python-crypto-2.6-1.fc17/src/strxor.c
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue May 21 04:50:33 2013