From f5cf3600eb5904517d2777805667a38e5314785b Mon Sep 17 00:00:00 2001 From: neil_a_wilson <neil_a_wilson@localhost> Date: Fri, 24 Aug 2007 20:36:15 +0000 Subject: [PATCH] Add a tool that can be used to base64 encode or decode information. The source can be provided as a string, contained in a file, or piped in via standard input, and the result can be sent to standard output or written to a file. --- opends/src/messages/messages/utility.properties | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/opends/src/messages/messages/utility.properties b/opends/src/messages/messages/utility.properties index 47e1299..780cd34 100644 --- a/opends/src/messages/messages/utility.properties +++ b/opends/src/messages/messages/utility.properties @@ -448,3 +448,28 @@ attach file %s: %s SEVERE_ERR_EMAIL_CANNOT_SEND_MESSAGE_185=An error occurred while trying to \ send the e-mail message: %s +INFO_BASE64_TOOL_DESCRIPTION_186=Encode and decode information using base64 +INFO_BASE64_HELP_DESCRIPTION_187=Display this usage information +INFO_BASE64_DECODE_DESCRIPTION_188=Decode base64-encoded information into \ + raw data +INFO_BASE64_ENCODE_DESCRIPTION_189=Encode raw data using base64 +INFO_BASE64_ENCODED_DATA_DESCRIPTION_190=The base64-encoded data to be decoded +INFO_BASE64_ENCODED_FILE_DESCRIPTION_191=The path to a file containing the \ + base64-encoded data to be decoded +INFO_BASE64_RAW_DATA_DESCRIPTION_192=The raw data to be base64 encoded +INFO_BASE64_RAW_FILE_DESCRIPTION_193=The path to a file containing the raw \ + data to be base64 encoded +INFO_BASE64_TO_ENCODED_FILE_DESCRIPTION_194=The path to a file to which the \ + base64-encoded data should be written +INFO_BASE64_TO_RAW_FILE_DESCRIPTION_195=The path to a file to which the raw \ + base64-decoded data should be written +SEVERE_ERR_BASE64_CANNOT_READ_RAW_DATA_196=An error occurred while attempting \ + to read the raw data to encode: %s +SEVERE_ERR_BASE64_CANNOT_WRITE_ENCODED_DATA_197=An error occurred while \ + attempting to write the encoded data: %s +SEVERE_ERR_BASE64_CANNOT_READ_ENCODED_DATA_198=An error occurred while \ + attempting to read the base64-encoded data: %s +SEVERE_ERR_BASE64_CANNOT_WRITE_RAW_DATA_199=An error occurred while \ + attempting to write the decoded data: %s +SEVERE_ERR_BASE64_UNKNOWN_SUBCOMMAND_200=Unknown subcommand %s + -- Gitblit v1.10.0