From: Scott Baker Date: Fri, 10 Apr 2009 18:53:06 +0000 (+0000) Subject: add functions to sign and verify strings using a key X-Git-Tag: sfa-0.9-0@14641~493 X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=commitdiff_plain;h=ae0f0630009501938c396cc54b6d94260abf34a6 add functions to sign and verify strings using a key --- diff --git a/tests/testKeypair.py b/tests/testKeypair.py index 7ce48e29..6562316f 100644 --- a/tests/testKeypair.py +++ b/tests/testKeypair.py @@ -1,5 +1,6 @@ import unittest import xmlrpclib +import base64 from cert import * class TestKeypair(unittest.TestCase): @@ -35,5 +36,14 @@ class TestKeypair(unittest.TestCase): pk = k.get_openssl_pkey() self.assert_(pk != None) + def test_sign_verify(self): + k = Keypair() + k.create() + + data = "this is a test" + sig = k.sign_string(data) + + print k.verify_string(data, sig) + if __name__ == "__main__": unittest.main()