How to Decrypt EncryptedAssertion using System.Cryptography
问题 The Identity provider is encrypting the Saml Assertion using the functions of component pro Dim encryptedSamlAssertion As New EncryptedAssertion(samlAssertion, encryptingCert, New System.Security.Cryptography.Xml.EncryptionMethod(SamlKeyAlgorithm.Aes256Cbc)) At the Service Provider I am trying to Decrypt the assertion. But I cannot use component pro. I have to use System.Security.Cryptography X509Certificate is used for encrypting and decryption Aes256Cbc is the Encryption Algorithm Please