From ae0f0630009501938c396cc54b6d94260abf34a6 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Fri, 10 Apr 2009 18:53:06 +0000 Subject: [PATCH] add functions to sign and verify strings using a key --- tests/testKeypair.py | 10 ++++++++++ 1 file changed, 10 insertions(+) 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() -- 2.43.0