diff options
author | Wan-Teh Chang <wtc@google.com> | 2013-04-02 15:53:06 -0700 |
---|---|---|
committer | Wan-Teh Chang <wtc@google.com> | 2013-04-02 15:53:06 -0700 |
commit | c16749f64747f9202a54223c5bfb2242925ca338 (patch) | |
tree | 4ece9e4b51d519e6f8e5e56def526e81448b7705 | |
parent | ab36d6229ffdee734c8e7190aea04444f6d64f3f (diff) | |
download | nss-hg-c16749f64747f9202a54223c5bfb2242925ca338.tar.gz |
Bug 854063: remove spaces at the end of lines.
-rwxr-xr-x | cmd/pk11gcmtest/Makefile | 2 | ||||
-rw-r--r-- | cmd/pk11gcmtest/manifest.mn | 2 | ||||
-rw-r--r-- | cmd/pk11gcmtest/pk11gcmtest.c | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/cmd/pk11gcmtest/Makefile b/cmd/pk11gcmtest/Makefile index 2450b3d29..3ffa38747 100755 --- a/cmd/pk11gcmtest/Makefile +++ b/cmd/pk11gcmtest/Makefile @@ -1,5 +1,5 @@ #! gmake -# +# # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/cmd/pk11gcmtest/manifest.mn b/cmd/pk11gcmtest/manifest.mn index 9d93298bd..f5bc0ece0 100644 --- a/cmd/pk11gcmtest/manifest.mn +++ b/cmd/pk11gcmtest/manifest.mn @@ -1,4 +1,4 @@ -# +# # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/cmd/pk11gcmtest/pk11gcmtest.c b/cmd/pk11gcmtest/pk11gcmtest.c index 1f436953a..c07d22024 100644 --- a/cmd/pk11gcmtest/pk11gcmtest.c +++ b/cmd/pk11gcmtest/pk11gcmtest.c @@ -39,7 +39,7 @@ aes_encrypt_buf( const unsigned char *iv, unsigned int ivsize, unsigned char *output, unsigned int *outputlen, unsigned int maxoutputlen, const unsigned char *input, unsigned int inputlen, - const unsigned char *aad, unsigned int aadlen, unsigned int tagsize) + const unsigned char *aad, unsigned int aadlen, unsigned int tagsize) { SECStatus rv = SECFailure; SECItem key_item; @@ -135,7 +135,7 @@ aes_decrypt_buf( param.type = siBuffer; param.data = (unsigned char *) &gcm_params; param.len = sizeof(gcm_params); - + if (PK11_Decrypt(symKey, CKM_AES_GCM, ¶m, output, outputlen, maxoutputlen, concatenated, inputlen + tagsize) != SECSuccess) { |