11 references to Rent
System.Security.Cryptography (11)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsa.cs (1)
159
using (CryptoPoolLease lease = CryptoPoolLease.
Rent
(Algorithm.MaxSignatureSizeInBytes, skipClear: true))
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsaManaged.cs (1)
344
using (CryptoPoolLease lease = CryptoPoolLease.
Rent
(Algorithm.MaxPrivateKeySizeInBytes))
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CryptoPool.cs (1)
127
return
Rent
(length, skipClear);
src\runtime\src\libraries\Common\src\System\Security\Cryptography\X25519WindowsHelpers.cs (1)
89
CryptoPoolLease lease = CryptoPoolLease.
Rent
(requiredBufferSize, skipClear: !privateKey);
System\Security\Cryptography\Aes.cs (2)
184
using (CryptoPoolLease lease = CryptoPoolLease.
Rent
(ciphertext.Length - 8, skipClear: true))
440
using (CryptoPoolLease lease = CryptoPoolLease.
Rent
(len))
System\Security\Cryptography\X25519DiffieHellmanCng.Windows.cs (1)
181
using (CryptoPoolLease lease = CryptoPoolLease.
Rent
(numBytesNeeded, skipClear: !privateKey))
System\Security\Cryptography\X509Certificates\X509Certificate2.cs (4)
865
using (CryptoPoolLease pk1 = CryptoPoolLease.
Rent
(publicKey.Algorithm.EncapsulationKeySizeInBytes, skipClear: true))
866
using (CryptoPoolLease pk2 = CryptoPoolLease.
Rent
(publicKey.Algorithm.EncapsulationKeySizeInBytes, skipClear: true))
967
using (CryptoPoolLease pk1 = CryptoPoolLease.
Rent
(publicKey.Algorithm.PublicKeySizeInBytes, skipClear: true))
968
using (CryptoPoolLease pk2 = CryptoPoolLease.
Rent
(publicKey.Algorithm.PublicKeySizeInBytes, skipClear: true))