2 instantiations of CryptoPoolLease
System.Security.Cryptography (2)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CryptoPool.cs (2)
85
return new
CryptoPoolLease
118
return new
CryptoPoolLease
32 references to CryptoPoolLease
System.Security.Cryptography (32)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsa.cs (6)
159
using (
CryptoPoolLease
lease =
CryptoPoolLease
.Rent(Algorithm.MaxSignatureSizeInBytes, skipClear: true))
1583
using (
CryptoPoolLease
lease =
CryptoPoolLease
.RentConditionally(Algorithm.MaxPublicKeySizeInBytes, destination, skipClear: true))
1708
using (
CryptoPoolLease
lease =
CryptoPoolLease
.RentConditionally(Algorithm.MaxPrivateKeySizeInBytes, destination, skipClearIfNotRented: true))
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsaManaged.cs (2)
344
using (
CryptoPoolLease
lease =
CryptoPoolLease
.Rent(Algorithm.MaxPrivateKeySizeInBytes))
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CryptoPool.cs (3)
81
internal static
CryptoPoolLease
Rent(int length, bool skipClear = false)
93
internal static
CryptoPoolLease
RentConditionally(
107
internal static
CryptoPoolLease
RentConditionally(
src\runtime\src\libraries\Common\src\System\Security\Cryptography\X25519WindowsHelpers.cs (3)
73
internal static
CryptoPoolLease
CreateCngBlob(ReadOnlySpan<byte> key, bool privateKey, out byte preservation)
89
CryptoPoolLease
lease =
CryptoPoolLease
.Rent(requiredBufferSize, skipClear: !privateKey);
System\Security\Cryptography\Aes.cs (6)
184
using (
CryptoPoolLease
lease =
CryptoPoolLease
.Rent(ciphertext.Length - 8, skipClear: true))
278
CryptoPoolLease
lease =
CryptoPoolLease
.RentConditionally(
440
using (
CryptoPoolLease
lease =
CryptoPoolLease
.Rent(len))
System\Security\Cryptography\X25519DiffieHellmanCng.Windows.cs (3)
71
using (
CryptoPoolLease
lease = X25519WindowsHelpers.CreateCngBlob(reducedPublicKey, privateKey: false, out _))
181
using (
CryptoPoolLease
lease =
CryptoPoolLease
.Rent(numBytesNeeded, skipClear: !privateKey))
System\Security\Cryptography\X25519DiffieHellmanImplementation.Windows.cs (1)
224
using (
CryptoPoolLease
lease = X25519WindowsHelpers.CreateCngBlob(key, privateKey, out preservation))
System\Security\Cryptography\X509Certificates\X509Certificate2.cs (8)
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))