From 290046abcc7559fdb6c2be529cdfb56590ab1a5c Mon Sep 17 00:00:00 2001
From: Gaetan Boismal <gaetan.boismal@forgerock.com>
Date: Mon, 31 Oct 2016 14:00:38 +0000
Subject: [PATCH] OPENDJ-2772 Create base64 tool in the sdk
---
opendj-ldap-toolkit/src/main/resources/com/forgerock/opendj/ldap/tools/tools.properties | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/opendj-ldap-toolkit/src/main/resources/com/forgerock/opendj/ldap/tools/tools.properties b/opendj-ldap-toolkit/src/main/resources/com/forgerock/opendj/ldap/tools/tools.properties
index ee0c97b..8915f93 100644
--- a/opendj-ldap-toolkit/src/main/resources/com/forgerock/opendj/ldap/tools/tools.properties
+++ b/opendj-ldap-toolkit/src/main/resources/com/forgerock/opendj/ldap/tools/tools.properties
@@ -365,6 +365,30 @@
ERR_ADDRATE_SIZE_THRESHOLD_LOWER_THAN_ITERATIONS=The size threshold must be lower than \
the maximum number of add operations
INFO_ADDRATE_DESCRIPTION_NOPURGE=Disable the purge phase when the tool stops.
+#
+# Base64 Tool
+#
+INFO_BASE64_TOOL_DESCRIPTION=This utility can be used to encode and decode information using base64
+INFO_BASE64_DECODE_DESCRIPTION=Decode base64-encoded information into \
+ raw data. When no options are specified, this subcommand reads from standard input and writes to standard output
+INFO_BASE64_ENCODE_DESCRIPTION=Encode raw data using base64. \
+ When no options are specified, this subcommand reads from standard input and writes to standard output
+INFO_BASE64_ENCODED_DATA_DESCRIPTION=The base64-encoded data to be decoded
+INFO_BASE64_ENCODED_FILE_DESCRIPTION=The path to a file containing the base64-encoded data to be decoded
+INFO_BASE64_RAW_DATA_DESCRIPTION=The raw data to be base64 encoded
+INFO_BASE64_RAW_FILE_DESCRIPTION=The path to a file containing the raw data to be base64 encoded
+INFO_BASE64_TO_ENCODED_FILE_DESCRIPTION=The path to a file to which the base64-encoded data should be written
+INFO_BASE64_TO_RAW_FILE_DESCRIPTION=The path to a file to which the raw base64-decoded data should be written
+ERR_BASE64_CANNOT_READ_RAW_DATA=An error occurred while attempting to read the raw data to encode: %s
+ERR_BASE64_CANNOT_WRITE_ENCODED_DATA=An error occurred while attempting to write the encoded data: %s
+ERR_BASE64_CANNOT_READ_ENCODED_DATA=An error occurred while attempting to read the base64-encoded data: %s
+ERR_BASE64_CANNOT_WRITE_RAW_DATA=An error occurred while attempting to write the decoded data: %s
+ERR_BASE64_UNKNOWN_SUBCOMMAND=Unknown subcommand %s
+INFO_DATA_PLACEHOLDER={data}
+REF_SHORT_DESC_BASE64=encode and decode base64 strings
+ERR_BASE64_NO_SUBCOMMAND_SPECIFIED=A subcommand must be specified with this tool.\n\
+ Please use either 'base64 encode' or 'base64 decode'.
+ERR_BASE64_ERROR_DECODING_RAW_DATA=Unable to decode provided data: %s
# Strings for generated reference documentation.
REF_SHORT_DESC_ADDRATE=measure add and delete throughput and response time
--
Gitblit v1.10.0