You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AdfsRelyingPartyTrust resource needs to support an Encryption Certificate and Request Signing Certificates.
New resource properties required:
Property Name
Type
Description
EncryptionCertificate
String
Specifies the certificate to be used for encrypting claims that are issued to this relying party. This should be in Base64 CER encoded format.
RequestSigningCertificate
String Array
Specifies an array of certificates to be used to verify the signature on a request from the relying party. This should be in Base64 CER encoded format.
The AdfsRelyingPartyTrust cmdlets expect to be passed values of type System.Security.Cryptography.X509Certificates.X509Certificate2 for these parameters.
The following code can be used to create an X509Certificate2 object from the Base64 CER data:
The
AdfsRelyingPartyTrust
resource needs to support an Encryption Certificate and Request Signing Certificates.New resource properties required:
The
AdfsRelyingPartyTrust
cmdlets expect to be passed values of typeSystem.Security.Cryptography.X509Certificates.X509Certificate2
for these parameters.The following code can be used to create an
X509Certificate2
object from the Base64 CER data:The following code can be used to extract Base64 CER data from an
x509Certificate2
object:The text was updated successfully, but these errors were encountered: