Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
bretambrose committed Nov 9, 2023
1 parent e020d85 commit afc6c0b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions samples/utils/CommandLineUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,19 +262,23 @@ namespace Utils
RegisterCommand(
m_cmd_custom_auth_authorizer_signature,
"<str>",
"(Signed authorizers only) a digital signature of the value of the `--custom_auth_token_value` parameter using the private key associated with the authorizer. The binary signature value must be base64 encoded and then URI encoded; the SDK will not do this for you. (optional)");
"(Signed authorizers only) a digital signature of the value of the `--custom_auth_token_value` parameter "
"using the private key associated with the authorizer. The binary signature value must be base64 encoded "
"and then URI encoded; the SDK will not do this for you. (optional)");
RegisterCommand(
m_cmd_custom_auth_password,
"<str>",
"The password to send when connecting through a custom authorizer (optional)");
RegisterCommand(
m_cmd_custom_auth_token_key_name,
"<str>",
"(Signed authorizers only) The query string parameter name that the token value should be bound to in the MQTT Connect packet. (optional)");
"(Signed authorizers only) The query string parameter name that the token value should be bound to in the "
"MQTT Connect packet. (optional)");
RegisterCommand(
m_cmd_custom_auth_token_value,
"<str>",
"(Signed authorizers only) An arbitrary value chosen by the user. The user must also submit a digital signature of this value using the private key associated with the authorizer. (optional)");
"(Signed authorizers only) An arbitrary value chosen by the user. The user must also submit a digital "
"signature of this value using the private key associated with the authorizer. (optional)");
}

void CommandLineUtils::AddCognitoCommands()
Expand Down

0 comments on commit afc6c0b

Please sign in to comment.