diff --git a/test/dap_enc_key_test.py b/test/dap_enc_key_test.py new file mode 100644 index 0000000000000000000000000000000000000000..17a5476a3bdec1391a1019485f6153519e37fd9b --- /dev/null +++ b/test/dap_enc_key_test.py @@ -0,0 +1,11 @@ +import libdap_crypto_python_module as crypto + +print ("Start dap_enc_key_test") +print ("Crypto init") +crypto.init() +print ("Create KEY") +key = crypto.newKey(1) +print ("Dellete key") +crypto.delKey(key) +print ("Crypto deinit") +crypto.deinit