Table of Contents

3.6 Constants

Return to DIDO CLI Background

ALGORITHM

Return to Top

The name of the default algorithm used for encryption.

DEFINE CONSTANT DEFAULT_ALGORITHM AS “SHA-256”;

BASE_FORMAT

Return to Top

The name of the default binary formats (i.e., width in bits) for hash and crypto keys.

BINARY_FORMAT ::= "Base64";

BINARY_FORMAT

Return to Top A string that can be used to designate a binary format.

BINARY_FORMAT ::= "Binary";

DATE_FORMAT_STRING

Return to Top

The default string for formatting dates.

DATE_FORMAT_STRING ::= "YYYY-MM-DD HH:MM:SS";

FALSE

Return to Top The numeric constant representing the Boolean False.

FALSE ::= 0;

HEX_FORMAT

Return to Top A string that can be used to designate a hexadecimal format.

HEX_FORMAT ::= "Hex";

MAXIMUM_NAME_LENGTH

Return to Top The maximum length in characters of an object name.

MAXIMUM_NAME_LENGTH ::= 30;

NULL

Return to Top

NULL ::= NULL;

TRUE

Return to Top The numeric constant representing the Boolean TRUE.

TRUE ::= 1;

VOID

Return to Top

VOID ::= {};

WHITESPACE

Return to Top The list of characters that represent a whitespace character.

WHITESPACE ::= [ \t\r\n\f];