Crypt.Decompress
Crypt.Decompress
This method decompresses data that has been compressed by the Compress method. Given a string, decompresses the string from a double-byte representation of the same string.
Syntax
Function Crypt.Decompress(bstrIn) As String
Parameters
- bstrIn
The data to be decompressed, in string form.
Return values
The decompressed data, in string form.
Example
For an example of this method, see Crypt.Decrypt.
Remarks
This method decompresses a compressed string and is typically used after calling Decrypt because a string that is encrypted in double-byte representation will save space on the query string or in storage. This method should be used on any decrypted strings that arrive from the kppvc parameter received for purposes of Microsoft® Kids Passport account verification.
See Also