New-STFSamlSigningCertificate¶
Create a new request signing certificate to be used by the SAML Service Provider
Syntax¶
New-STFSamlSigningCertificate [-AuthenticationService] <AuthenticationService> [-SubjectName] <String> [<CommonParameters>]
Detailed Description¶
Create a new request signing certificate to be used by SAML Service Provider, fpr the specified authentication service
Related Commands¶
Parameters¶
Name | Description | Required? | Pipeline Input |
---|---|---|---|
AuthenticationService | The Authentication Service to create the certificate for. | true | true (ByValue) |
SubjectName | The certificate subject name. | true | true (ByValue) |
Input Type¶
Citrix.StoreFront.Model.Authentication.AuthenticationService¶
Parameter AuthenticationService: A .NET class representing the configuration of a StoreFront Authentication service
System.String¶
Parameter SubjectName: The .NET 'System.String' reference type
Return Values¶
Examples¶
EXAMPLE 1 Create a new request signing certificate to be used by the SAML Service Provider.¶
$authentication = Get-STFAuthenticationService
New-STFSamlSigningCertificate -AuthenticationService $authentication -SubjectName Signing
REMARKS
Create a new request signing certificate, with subject name 'Signing', to be used by the SAML Service Provider in the specified authentication service.