2 overrides of KeySize
mscorlib (2)
system\security\cryptography\dsacryptoserviceprovider.cs (1)
133
public override int
KeySize
{
system\security\cryptography\rsacryptoserviceprovider.cs (1)
180
public override int
KeySize
{
5 writes to KeySize
mscorlib (2)
system\security\cryptography\dsa.cs (1)
65
dsa.
KeySize
= keySizeInBits;
system\security\cryptography\rsa.cs (1)
63
rsa.
KeySize
= keySizeInBits;
System.Core (3)
System\Security\Cryptography\ECDiffieHellmanCng.cs (1)
60
KeySize
= keySize;
System\Security\Cryptography\ECDsaCng.cs (1)
42
KeySize
= keySize;
System\Security\Cryptography\RsaCng.cs (1)
39
KeySize
= keySize;
22 references to KeySize
mscorlib (6)
system\security\cryptography\dsa.cs (1)
67
if (dsa.
KeySize
!= keySizeInBits) {
system\security\cryptography\rsa.cs (1)
65
if (rsa.
KeySize
!= keySizeInBits) {
system\security\cryptography\rsapkcs1keyexchangeformatter.cs (1)
66
int cb = _rsaKey.
KeySize
/8;
system\security\cryptography\utils.cs (3)
807
int cb = rsa.
KeySize
/ 8;
856
int cb = rsa.
KeySize
/ 8;
935
int cb = rsa.
KeySize
/8;
System (1)
security\system\security\cryptography\x509\x509certificate2.cs (1)
547
temp = pubKey.Key.
KeySize
.ToString();
System.Core (9)
System\Security\Cryptography\ECDiffieHellmanCng.cs (4)
217
if (m_key != null && m_key.KeySize !=
KeySize
) {
225
switch (
KeySize
) {
348
if (otherPartyPublicKey.KeySize !=
KeySize
) {
520
if (otherPartyPublicKey.KeySize !=
KeySize
) {
System\Security\Cryptography\ECDsaCng.cs (2)
130
if (m_key != null && m_key.KeySize !=
KeySize
) {
138
switch (
KeySize
) {
System\Security\Cryptography\Rfc4050KeyFormatter.cs (1)
217
int curveLength = (ecdsa.
KeySize
+ 7) / 8;
System\Security\Cryptography\RsaCng.cs (2)
85
if (_key != null && _key.KeySize !=
KeySize
)
100
BitConverter.GetBytes(
KeySize
),
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCertificateStoreProvider.cs (2)
99
int keySizeInBytes = certificate.PublicKey.Key.
KeySize
/ 8;
199
int keySizeInBytes = certificate.PublicKey.Key.
KeySize
/ 8;
fx\src\data\System\Data\SqlClient\SqlColumnEncryptionCngProvider.cs (1)
377
return rsaCngProvider.
KeySize
/ 8; // Convert from bits to byte
System.IdentityModel (2)
System\IdentityModel\Tokens\RsaSecurityKey.cs (1)
26
get { return this.rsa.
KeySize
; }
System\IdentityModel\Tokens\X509AsymmetricSecurityKey.cs (1)
32
get { return this.PublicKey.
KeySize
; }
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardAsymmetricCrypto.cs (1)
44
get { return m_rsa.
KeySize
; }