Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The following example shows how to use the decodeFromBase64String method.
function DecodeData( stringToDecrypt )
{
try {
// Decode from a base64 string.
var inputDataBuffer = Windows.Security.Cryptography.CryptographicBuffer.decodeFromBase64String(stringToDecrypt);
}
catch ( ) {
// Handle the error.
}
}