2 writes to symmetricKey
System.IdentityModel (2)
System\IdentityModel\Tokens\SymmetricKey.cs (2)
35this.symmetricKey = new byte[symmetricKey.Length]; 40this.symmetricKey = symmetricKey;
11 references to symmetricKey
System.IdentityModel (11)
System\IdentityModel\Tokens\SymmetricKey.cs (11)
36Buffer.BlockCopy(symmetricKey, 0, this.symmetricKey, 0, symmetricKey.Length); 51return CryptoHelper.UnwrapKey(this.symmetricKey, keyData, algorithm); 56return CryptoHelper.WrapKey(this.symmetricKey, keyData, algorithm); 61return CryptoHelper.GenerateDerivedKey(this.symmetricKey, algorithm, label, nonce, derivedKeyLength, offset); 66return CryptoHelper.CreateDecryptor(this.symmetricKey, iv, algorithm); 71return CryptoHelper.CreateEncryptor(this.symmetricKey, iv, algorithm); 81return CryptoHelper.CreateKeyedHashAlgorithm(this.symmetricKey, algorithm); 86return CryptoHelper.GetSymmetricAlgorithm(this.symmetricKey, algorithm); 91byte[] local = new byte[this.symmetricKey.Length]; 92Buffer.BlockCopy(this.symmetricKey, 0, local, 0, this.symmetricKey.Length);