1 instantiation of InfoCardRSACryptoProvider
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardAsymmetricCrypto.cs (1)
35
m_rsa = new
InfoCardRSACryptoProvider
(cryptoHandle);
13 references to InfoCardRSACryptoProvider
System.IdentityModel.Selectors (13)
infocard\client\System\IdentityModel\Selectors\InfoCardAsymmetricCrypto.cs (1)
25
InfoCardRSACryptoProvider
m_rsa;
infocard\client\System\IdentityModel\Selectors\InfoCardRSAOAEPKeyExchangeDeformatter.cs (2)
31
if (null != m_rsaKey && m_rsaKey is
InfoCardRSACryptoProvider
)
33
return ((
InfoCardRSACryptoProvider
)m_rsaKey).Decrypt(rgbData, true);
infocard\client\System\IdentityModel\Selectors\InfoCardRSAOAEPKeyExchangeFormatter.cs (2)
37
if (null != m_rsaKey && m_rsaKey is
InfoCardRSACryptoProvider
)
39
return ((
InfoCardRSACryptoProvider
)m_rsaKey).Encrypt(rgbData, true);
infocard\client\System\IdentityModel\Selectors\InfoCardRSAPKCS1KeyExchangeDeformatter.cs (2)
30
if (null != m_rsaKey && m_rsaKey is
InfoCardRSACryptoProvider
)
32
return ((
InfoCardRSACryptoProvider
)m_rsaKey).Decrypt(rgbIn, false);
infocard\client\System\IdentityModel\Selectors\InfoCardRSAPKCS1KeyExchangeFormatter.cs (2)
39
if (null != m_rsaKey && m_rsaKey is
InfoCardRSACryptoProvider
)
41
return ((
InfoCardRSACryptoProvider
)m_rsaKey).Encrypt(rgbData, false);
infocard\client\System\IdentityModel\Selectors\InfoCardRSAPKCS1SignatureDeformatter.cs (2)
45
&& m_rsaKey is
InfoCardRSACryptoProvider
)
47
return ((
InfoCardRSACryptoProvider
)m_rsaKey).VerifyHash(rgbHash, m_strOID, rgbSignature);
infocard\client\System\IdentityModel\Selectors\InfoCardRSAPKCS1SignatureFormatter.cs (2)
45
if (!(null == m_strOID || null == m_rsaKey || null == rgbHash) && m_rsaKey is
InfoCardRSACryptoProvider
)
47
return ((
InfoCardRSACryptoProvider
)m_rsaKey).SignHash(rgbHash, m_strOID);