SecurityKey.DecryptKey(String, Byte[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, decrypts the specified encrypted key.
public:
abstract cli::array <System::Byte> ^ DecryptKey(System::String ^ algorithm, cli::array <System::Byte> ^ keyData);
public abstract byte[] DecryptKey (string algorithm, byte[] keyData);
abstract member DecryptKey : string * byte[] -> byte[]
Public MustOverride Function DecryptKey (algorithm As String, keyData As Byte()) As Byte()
Parameters
- algorithm
- String
The cryptographic algorithm that was used to encrypt the key.
Returns
Byte[]
An array of Byte that contains the decrypted key.
Remarks
Use the static fields of the SecurityAlgorithms class to specify the algorithm.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.