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