~ubuntu-branches/ubuntu/quantal/m2crypto/quantal

« back to all changes in this revision

Viewing changes to tests/test_rsa.py

  • Committer: Bazaar Package Importer
  • Author(s): Dima Barsky
  • Date: 2007-05-24 21:14:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070524211436-73w3oonappxy8k4a
Tags: 0.17-1
* New upstream release
* Acknowledge NMU (Closes: #380861)
* Changed section to python (Closes: #425875)

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
class RSATestCase(unittest.TestCase):
12
12
 
13
 
    errkey = 'dsa.priv.pem'
14
 
    privkey = 'rsa.priv.pem'
15
 
    privkey2 = 'rsa.priv2.pem'
16
 
    pubkey = 'rsa.pub.pem'
 
13
    errkey = 'tests/dsa.priv.pem'
 
14
    privkey = 'tests/rsa.priv.pem'
 
15
    privkey2 = 'tests/rsa.priv2.pem'
 
16
    pubkey = 'tests/rsa.pub.pem'
17
17
 
18
18
    data = sha.sha('The magic words are squeamish ossifrage.').digest()
19
19