1 write to EncryptionKeyInfo
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlSecurityUtility.cs (1)
231md.EncryptionKeyInfo = encryptionkeyInfoChosen;
9 references to EncryptionKeyInfo
System.Data (9)
fx\src\data\System\Data\SqlClient\SqlSecurityUtility.cs (1)
206string keyStr = GetBytesAsString(md.EncryptionKeyInfo.Value.encryptedKey, fLast:true, countOfBytes:10);
fx\src\data\System\Data\SqlClient\TdsParserHelperClasses.cs (8)
964Debug.Assert(cipherMetadata.EncryptionKeyInfo.HasValue, "cipherMetadata.EncryptionKeyInfo.HasValue should be true."); 993totalLength += _cipherMetadata.EncryptionKeyInfo.Value.cekMdVersion.Length; 1010SerializeIntIntoBuffer(_cipherMetadata.EncryptionKeyInfo.Value.databaseId, serializedWireFormat, ref consumedBytes); 1013SerializeIntIntoBuffer(_cipherMetadata.EncryptionKeyInfo.Value.cekId, serializedWireFormat, ref consumedBytes); 1016SerializeIntIntoBuffer(_cipherMetadata.EncryptionKeyInfo.Value.cekVersion, serializedWireFormat, ref consumedBytes); 1019Buffer.BlockCopy(_cipherMetadata.EncryptionKeyInfo.Value.cekMdVersion, 0, serializedWireFormat, consumedBytes, _cipherMetadata.EncryptionKeyInfo.Value.cekMdVersion.Length); 1020consumedBytes += _cipherMetadata.EncryptionKeyInfo.Value.cekMdVersion.Length;