Encrypts the data in a specified byte array and returns a byte array that contains the encrypted data.
A byte array representing the encrypted data.
This method can be used to encrypt data such as passwords, keys, or connection strings. The optionalEntropy parameter enables you to add data to increase the complexity of the encryption; specify null for no additional complexity. If provided, this information must also be used when decrypting the data using the ProtectedData.Unprotect(Byte[], Byte[], DataProtectionScope) method.
If you use this method during impersonation, you may receive the following error: "Key not valid for use in specified state." To prevent this error, load the profile of the user you want to impersonate before calling the method.