summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWan-Teh Chang <wtc@google.com>2013-04-02 15:53:06 -0700
committerWan-Teh Chang <wtc@google.com>2013-04-02 15:53:06 -0700
commitc16749f64747f9202a54223c5bfb2242925ca338 (patch)
tree4ece9e4b51d519e6f8e5e56def526e81448b7705
parentab36d6229ffdee734c8e7190aea04444f6d64f3f (diff)
downloadnss-hg-c16749f64747f9202a54223c5bfb2242925ca338.tar.gz
Bug 854063: remove spaces at the end of lines.
-rwxr-xr-xcmd/pk11gcmtest/Makefile2
-rw-r--r--cmd/pk11gcmtest/manifest.mn2
-rw-r--r--cmd/pk11gcmtest/pk11gcmtest.c4
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, &param,
output, outputlen, maxoutputlen,
concatenated, inputlen + tagsize) != SECSuccess) {