3 writes to _heldoverCipher
System.Security.Cryptography (3)
System\Security\Cryptography\UniversalCryptoDecryptor.cs (3)
50_heldoverCipher = new byte[InputBlockSize]; 167_heldoverCipher = null; 182_heldoverCipher = null;
13 references to _heldoverCipher
System.Security.Cryptography (13)
System\Security\Cryptography\UniversalCryptoDecryptor.cs (13)
42if (_heldoverCipher != null) 44int depadDecryptLength = BasicSymmetricCipher.Transform(_heldoverCipher, outputBuffer); 54Debug.Assert(inputBuffer.Length >= _heldoverCipher.Length); 55inputBuffer.Slice(inputBuffer.Length - _heldoverCipher.Length).CopyTo(_heldoverCipher); 56inputBuffer = inputBuffer.Slice(0, inputBuffer.Length - _heldoverCipher.Length); 86if (_heldoverCipher == null) 95rentedCiphertextSize = _heldoverCipher.Length + inputBuffer.Length; 98_heldoverCipher.AsSpan().CopyTo(ciphertext); 99inputBuffer.CopyTo(ciphertext.Slice(_heldoverCipher.Length)); 166byte[]? heldoverCipher = _heldoverCipher; 179if (_heldoverCipher != null) 181Array.Clear(_heldoverCipher);