diff options
author | Paul Yang <paulyang.inf@gmail.com> | 2017-06-06 17:35:43 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-06-09 18:04:10 +0200 |
commit | bd91e3c870402c4b10909c47082daece473d22ef (patch) | |
tree | 9e29571095ab06298da2b312b9c350781f55b8d1 /demos | |
parent | List undocumented macros (diff) | |
download | openssl-bd91e3c870402c4b10909c47082daece473d22ef.tar.xz openssl-bd91e3c870402c4b10909c47082daece473d22ef.zip |
Fix a bundle of trailing spaces in several files
Signed-off-by: Paul Yang <paulyang.inf@gmail.com>
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Reviewed-by: Ben Kaduk <kaduk@mit.edu>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3622)
Diffstat (limited to 'demos')
-rw-r--r-- | demos/evp/aesgcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/evp/aesgcm.c b/demos/evp/aesgcm.c index df59f469fd..46d9a5639b 100644 --- a/demos/evp/aesgcm.c +++ b/demos/evp/aesgcm.c @@ -102,7 +102,7 @@ void aes_gcm_decrypt(void) printf("Plaintext:\n"); BIO_dump_fp(stdout, outbuf, outlen); /* Set expected tag value. */ - EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, sizeof(gcm_tag), + EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, sizeof(gcm_tag), (void *)gcm_tag); /* Finalise: note get no output for GCM */ rv = EVP_DecryptFinal_ex(ctx, outbuf, &outlen); |