Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The SRP_Encode function is useful for encoding binary data into a printable format. A string that is in printable format contains human readable characters. Encoded data can usually be transmitted through the internet and used in URLs and emails. There are three encoding algorithms available:

AlgorithmDescriptionVersion Added
HEXThe output contains hexadecimal pairs for each byte
BASE32The output is encoded in BASE32 printable format
BASE64The output is encoded in BASE64 printable format
URLThe output is encoded in a format suitable for use in a URL2.1.5
BASE64URLThe output is encoded in BASE64 using a character set suitable for use in a URL2.1.5

If you leave the Algorithm parameter blank or pass an unrecognized value, then BASE64 is assumed.

...