diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-04-22 10:11:43 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-04-22 10:11:43 -0400 |
commit | 157c0fa67e1ccdaac5a66983004dab8e978f2b4f (patch) | |
tree | 62f2a3d5d2a26369a2a6b9e139bf9f3e70376aed /tests | |
parent | 5832e856914c97b7481a843f94416a5be7b10782 (diff) |
remove some debugging output from tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_pk.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_pk.cpp b/tests/test_pk.cpp index 66e3f89..abdbda0 100644 --- a/tests/test_pk.cpp +++ b/tests/test_pk.cpp @@ -188,8 +188,6 @@ olm_pk_signing_key_from_seed( seed, sizeof(seed) ); -printf("pubkey: %s\n", pubkey); - char *message = strdup("We hold these truths to be self-evident, that all men are created equal, that they are endowed by their Creator with certain unalienable Rights, that among these are Life, Liberty and the pursuit of Happiness."); std::uint8_t *sig_buffer = (std::uint8_t *) malloc(olm_pk_signature_length() + 1); @@ -200,8 +198,6 @@ olm_pk_sign( sig_buffer, olm_pk_signature_length() ); -printf("sig: %s\n", sig_buffer); - void * utility_buffer = malloc(::olm_utility_size()); ::OlmUtility * utility = ::olm_utility(utility_buffer); |