I have an encryptedID element within a SAML response that I need to decrypt. The other end has encrypted the NameID element using the public key provided by me from a X509 cert. I've read tutorials to the point i have confused myself in how to do this. What is the correct procedure to decrypt and obtain the NameID node value. The cert will be 3rd party signed and will be stored in the CA Store. Im coding in c# and .net 3.5. The xml is as follows(changed some node values):
<ns3:EncryptedData xmlns:ns3="http://www.w3.org/2001/04/xmlenc#"Type="http://www.w3.org/2001/04/xmlenc#Element">
<ns3:EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#tripledes-cbc"/>
<ns4:KeyInfo xmlns:ns4="http://www.w3.org/2000/09/xmldsig#">
<ns3:EncryptedKey>
<ns3:EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#rsa-1_5"/>
<ns3:CipherData>
<ns3:CipherValue>encrypted key value here</ns3:CipherValue>
</ns3:CipherData>
</ns3:EncryptedKey>
<ns4:X509Data>
<ns4:X509Certificate>cert info here</ns4:X509Certificate>
</ns4:X509Data></ns4:KeyInfo>
<ns3:CipherData>
<ns3:CipherValue>NameID value here</ns3:CipherValue>
</ns3:CipherData>
</ns3:EncryptedData>