SymmetricKeyAlgorithmProvider.CreateSymmetricKey(IBuffer) 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.
Creates a symmetric key.
public:
virtual CryptographicKey ^ CreateSymmetricKey(IBuffer ^ keyMaterial) = CreateSymmetricKey;
CryptographicKey CreateSymmetricKey(IBuffer const& keyMaterial);
public CryptographicKey CreateSymmetricKey(IBuffer keyMaterial);
function createSymmetricKey(keyMaterial)
Public Function CreateSymmetricKey (keyMaterial As IBuffer) As CryptographicKey
Parameters
- keyMaterial
- IBuffer
Data used to generate the key. You can call the GenerateRandom method to create random key material.
Returns
Symmetric key.