ConvertedData Output Object (Convert-Data Cmdlet)

This object contains the converted data.

Syntax

Object ConvertedData {
   string Data;
   int Size;
   string Format;
   byte[] DataB;
}

Remarks

After encoding or decoding the Data, the results are returned in a ConvertedData object. The converted data is returned in Data, and the length of that data is returned as Size. The Format indicates the encoding format of the resulting Data.

The following list contains all of the possible encoding types and their corresponding descriptions:

PlainPlain text.
UUEncode3 Bytes are encoded into 4 readable characters.
BASE64 Encoding format of MIME. Much like UUEncode but another subset of printable characters is used.
QP Another MIME format coding only special characters. Mostly used if the text contains special accented characters.
URL Encoding of non-printable, 8-bit or unsafe characters as defined in RFC 1738.
JIS Japanese Industrial Standards encoding of Japanese character sets.
YEncodeSimilar to Base64, but uses 8-bit encoding to reduce the amount of data being sent and received. Designed for binaries on the Usenet or Email.
MD5The Message Digest 5 hashing algorithm produces a 128-bit hash output (Applicable only when -to is used).
SHA1The Secure Hash Algorithm produces a 128-bit hash output (Applicable only when -to is used).
HEX Creates a hexadecimal string representation of the decoded data.
SHA256 The Secure Hash Algorithm produces a 256-bit hash output (Applicable only when -to is used)

Copyright (c) 2022 /n software inc. - All rights reserved.
NetCmdlets 2020 - Version 20.0 [Build 8319]
 

Copyright (c) 2022 /n software inc. - All rights reserved.
NetCmdlets 2020 - Version 20.0 [Build 8319]