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