CertificateValidation/Microsoft.AzureStack.CertificateValidation.psm1
#Requires -RunAsAdministrator #Requires -Version 5.0 <############################################################# # # # Copyright (C) Microsoft Corporation. All rights reserved. # # # #############################################################> <# .SYNOPSIS This module is intended to be given to the customer along with their deploymentdata.json in order to validate the certificates are suitable before Azure Stack deployment. .DESCRIPTION The validation checks the following: Read PFX. Checks for valid PFX file, correct password and warns if public information is not protected by the password. Signature Algorithm. Checks the Signature Algorithm is not SHA1 Private Key. Checks the private key is present and is exported with the Local Machine attribute. Cert Chain. Checks certificate chain is in tact including for self-signed certificates. DNS Names. Checks the SAN contains relevant DNS names for each endpoint or if a supporting wildcard is present. Key Usage. Checks Key Usage contains Digital Signature and Key Encipherment and Enhanced Key Usage contains Server Authentication and Client Authentication. Key Size. Checks Key Size is 2048 or larger Chain Order. Checks the order of the other certificates making the chain is correct. Other Certificates. Ensure no other certificates have been packaged in PFX other than the relevant leaf certificate and its chain. No Profile. Checks a new user can load the PFX data without a user profile loaded, mimicking the behavior of gMSA accounts during certificate servicing. .EXAMPLE To Check certificates are ready for install run the following: Import-Module .\Microsoft.AzureStack.CertificateValidation.psm1 $password = Read-Host -Prompt "Enter PFX Password" -AsSecureString Start-CertChecker -CertificatePath .\Certificates\ -pfxPassword $password -deploymentDataJSONPath .\DeploymentData.json To import/export certificates as indicated by the output of the above command Import-Module .\Microsoft.AzureStack.CertificateValidation.psm1 $password = Read-Host -Prompt "Enter PFX Password" -AsSecureString Start-CertChecker -pfxPassword $password -pfxPath \certificates\acsblob\old_sslblob.pfx -ExportToPath \certificates\acsblob\new_sslblob.pfx [<CommonParameters>] .NOTES The script expects the certificates in the same directory structure as the install: i.e. \Certificates\ \ACSblob \ssl.pfx \ADFS \ssl.pfx The script requires the deploymentdata.json that will be used for deployment. .LINK #> $mod = Import-Module $PSScriptRoot\PublicCertHelper.psd1 -Force -PassThru Import-Module $PSScriptRoot\..\Microsoft.AzureStack.ReadinessChecker.Utilities.psm1 -Force #setting global variable to true $GLOBAL:standalone = $true $ErrorActionPreference = 'Stop' function Test-AzsCertificatePlacement { param ($certificatePath, $certConfig, $UseADFS) $thisFunction = $MyInvocation.MyCommand.Name # set expected folder names $validContainers = $certConfig.Keys | Foreach-Object {$PSITEM} if ($validContainers.count -eq 1) { if ($validContainers -eq (Split-Path $certificatePath -leaf)) { Write-AzsReadinessLog -message ("Single container expected: {0}" -f ($validContainers)) -Type Info -Function $thisFunction $folders = (Get-Item -Path $certificatePath) $actualContainers = (Get-Item -Path $certificatePath).Name } else { Write-AzsReadinessLog -Message ("Invalid folder name used {0}, expecting {1}. Please correct the folder name and retry. Exiting." -f (Split-Path -Path $certificatePath -leaf),$validContainers) -Type Error -Function $thisFunction -toScreen break } } elseif ($validContainers.count -gt 1) { Write-AzsReadinessLog -message ("Multiple containers found. Checking for folders: {0}" -f ($validContainers -join ',')) -Type Info -Function $thisFunction # Check directory structure is valid $actualContainers = (Get-ChildItem -Path $certificatePath -Directory).Name $folders = (Get-ChildItem -Path $certificatePath -Directory) if (-not $actualContainers) { Write-AzsReadinessLog -message ("Invalid folder structure found in certificate folder {0}, ensure only required folders are present. `nRequired folders: {1}" -f ` $CertificatePath, ` ($validContainers -join ', ')` ) -Type Error -Function $thisFunction -toScreen break } } else { Write-AzsReadinessLog -Message "Unable to determine expected certificate placement. Exiting." -Type Error -Function $thisFunction break } $compareContainers = Compare-Object -ReferenceObject $validContainers -DifferenceObject $actualContainers if ($compareContainers) { $invalidContainers = $compareContainers | Where-Object SideIndicator -eq '=>' | Select-Object -ExpandProperty InputObject $missingContainers = $compareContainers | Where-Object SideIndicator -eq '<=' | Select-Object -ExpandProperty InputObject if (-not $invalidContainers) {$invalidContainers = '[none]'} if (-not $missingContainers) {$missingContainers = '[none]'} Write-AzsReadinessLog -Message ("Invalid folder structure found in certificate folder {0}, ensure only required folders are present. `nRequired folders: {1} `nInvalid folders: {2} `nMissing folders: {3}" -f ` $CertificatePath, ` ($validContainers -join ', '), ` ($invalidContainers -join ', '), ` ($missingContainers -join ', ') ) -Type Error -Function $thisFunction -toScreen Write-AzsReadinessLog -Message 'Expected folder structure is as follows:' -Type Info -Function $thisFunction -toScreen Write-AzsReadinessLog -Message "`t$certificatePath" -Type Info -Function $thisFunction -toScreen $i = 0 foreach ($key in $certConfig.keys) { $i++ Write-AzsReadinessLog -Message "`t +--$key" -Type Info -Function $thisFunction -toScreen if ($i -lt $certConfig.Keys.count) { Write-AzsReadinessLog -Message "`t | \-<customFileName>.pfx" -Type Info -Function $thisFunction -toScreen } else { Write-AzsReadinessLog -Message "`t \-<customFileName>.pfx" -Type Info -Function $thisFunction -toScreen } } Write-AzsReadinessLog -Message "`nCorrect the folder structure and rerun validation." -Type Info -Function $thisFunction -toScreen break } else { Write-AzsReadinessLog -Message "Folder structure verified." -Type Info -Function $thisFunction } # Check there is only a single cert in each folder foreach ($folder in $folders) { Set-PFXPlacement -path $folder.fullname -certConfig $certConfig } } function Invoke-AzsCertificateValidation { <# .SYNOPSIS Invoke-Microsoft.AzureStack.CertificateValidation is a standalone wrapper for "certchecker" .DESCRIPTION Either invokes certificate validation for Azure Stack public certificates or import/export routine to correct Azure Stack public certificates .EXAMPLE $pfxPassword = ConvertTo-SecureString -String '<pfxPassword>' -AsPlainText -Force $certificateValidationParams = @{ CertificateType = 'Deployment' certificatepath = "$ENV:USERPROFILE\Documents\AzureStack\Certificates\Deployment" pfxPassword = $pfxPassword RegionName = 'east' ExternalFQDN = 'azurestack.contoso.com' IdentitySystem = 'AAD' } Invoke-AzsCertificateValidation @certificateValidationParams Validates multiple certificates are ready for Azure Stack Deployment and Secret Rotation. .EXAMPLE $pfxPassword = ConvertTo-SecureString -String '<pfxPassword>' -AsPlainText -Force $certificateValidationParams = @{ CertificateType = 'Deployment' certificatepath = "$ENV:USERPROFILE\Documents\AzureStack\Certificates\Deployment" pfxPassword = $pfxPassword DeploymentDataJSONPath = "$ENV:USERPROFILE\Documents\AzureStack\DeploymentData.json" } Invoke-AzsCertificateValidation @certificateValidationParams Validates multiple certificates are ready for Azure Stack Deployment and Secret Rotation using the DeploymentData.json. .EXAMPLE $pfxPassword = ConvertTo-SecureString -String '<pfxPassword>' -AsPlainText -Force $certificateValidationParams = @{ CertificateType = 'AppServices' certificatepath = "$ENV:USERPROFILE\Documents\AzureStack\Certificates\AppServices" pfxPassword = $pfxPassword RegionName = 'east' ExternalFQDN = 'azurestack.contoso.com' } Invoke-AzsCertificateValidation @certificateValidationParams Validates multiple Certificates are ready for AppServices and Azure Stack. Requires certificates in folders DefaultDomain, API, Publishing, Identity respectively. .EXAMPLE $pfxPassword = ConvertTo-SecureString -String '<pfxPassword>' -AsPlainText -Force $certificateValidationParams = @{ CertificateType = 'IoTHub' certificatepath = "$ENV:USERPROFILE\Documents\AzureStack\Certificates\IoTHub" pfxPassword = $pfxPassword RegionName = 'east' ExternalFQDN = 'azurestack.contoso.com' } Invoke-AzsCertificateValidation @certificateValidationParams Validates single Certificates are ready for IoTHub and Azure Stack. Also applicable to EventHubs, DBAdapter and DataboxEdge certificate types. .EXAMPLE $customCertConfig = @{ 'NWTradersRP' = @{ DNSName = @('*.nwtraders','admin.nwtraders') KeyLength = 4096 } 'TailSpinRP' = @{ DNSName = @('*.tailspin') HashAlgorithm = 'SHA386' } } $certificateValidationParams = @{ CustomCertConfig = $customCertConfig certificatepath = "$ENV:USERPROFILE\Documents\AzureStack\Certificates\CustomRPs" pfxPassword = $pfxPassword RegionName = 'east' ExternalFQDN = 'azurestack.contoso.com' } Invoke-AzsCertificateValidation @certificateValidationParams Validates multiple Certificates. Each single certificates should be placed in a subfolder (of CertificatePath) named the same as the key in the custom hashtable e.g. NWTraderRP and TailSpinRP as in the example. .EXAMPLE $pfxPassword = ConvertTo-SecureString -String '<pfxPassword>' -AsPlainText -Force $certificateValidationParams = @{ CertificateType = 'AzureStackEdgeDevice' DeviceName = 'DBG-KARB2NP5J' NodeSerialNumber = 'WIN-KARB2NP5J3O' certificatepath = "$ENV:USERPROFILE\Documents\AzureStack\Certificates\AzureStackEdgeDevice" pfxPassword = $pfxPassword ExternalFQDN = 'azurestack.contoso.com' } Invoke-AzsCertificateValidation @certificateValidationParams Validates multiple certificates are ready for Azure Stack Edge device certificates. .PARAMETER CertificateType Specifies the Azure Stack certificate type to generate a request for e.g. Deployment, AppServices, EventHubs, IoTHub etc. .PARAMETER CertificatePath Path to directory structure for Azure Stack Public Certificates. The path given for this parameter is expected to contain one of the following sets of sub-directories, each with a single pfx certificate: Identity System AAD: ACSBlob, ACSQueue, ACSTable, Admin Portal, ARM Admin, ARM Public, KeyVault, KeyVaultInternal, Public Portal Identity System ADFS: ADFS, Graph, ACSBlob, ACSQueue, ACSTable, Admin Portal, ARM Admin, ARM Public, KeyVault, KeyVaultInternal, Public Portal .PARAMETER pfxPassword A securestring containing a single password that is common across all certificates .PARAMETER deploymentDataJSONPath Specifies the Azure Stack deployment deployment data JSON configuration file. Generally only available to the deployment team. .PARAMETER ExternalFQDN Specifies the Azure Stack deployment's External FQDN, also aliased as ExternalFQDN and ExternalDomainName, must be valid DNSHostName .PARAMETER RegionName Specifies the Azure Stack deployment's region name when deploymentdata.json is not used, must be alphanumeric. .PARAMETER DeviceName Specifies the Device Name of an Azure Stack Edge device. .PARAMETER NodeSerialNumber Specifies the node serial number(s) of an Azure Stack Edge device. .PARAMETER IdentitySystem Specifies the Azure Stack deployment's Identity System valid values, AAD or ADFS, for Azure Active Directory and Active Directory Federated Services respectively .PARAMETER CustomCertConfig Specifies a custom hashtable for custom validation. Minimum required info: @{'CertificateName' = @{DNSName= @('*.rpnamespace')}} where DNSName declared everything left of region.domain.com. .PARAMETER CleanReport Specifies whether to purge the existing report and start again with a clean report. Execution history and validation data is lost for all Readiness Checker validations. .PARAMETER OutputPath Specifies custom path to save Readiness JSON report and Verbose log file. .LINK Deployment Certificate Validation - https://aka.ms/AzsValidateCerts PaaS Certificate Validation - https://aka.ms/AzsValidatePaaSCerts Azure Stack Readiness Checker Tool - https://aka.ms/AzsReadinessChecker .NOTES #> [CmdletBinding()] [Alias("Start-CertChecker", "Start-AzsCertChecker", "Start-AzureStackCertChecker", "CertChecker", "Invoke-AzureStackCertificateValidation")] Param( [Parameter(Mandatory = $true, HelpMessage = "Specify the Azure Stack certificate type to generate a request")] [ArgumentCompleter({Get-AzsCertificateTypes | Sort-Object})] [ValidateScript({$_ -in (Get-AzsCertificateTypes)})] [string] $CertificateType, [Parameter(Mandatory=$true,HelpMessage="Enter Path to Certificates Directory")] [ValidateScript( {Test-Path $_ -PathType Container})] [string] $CertificatePath, [Parameter(Mandatory=$true,ParameterSetName='ConfigValidation',HelpMessage="Enter Azure Stack Region Name")] [Parameter(Mandatory=$false,ParameterSetName='CustomValidation',HelpMessage="Enter Azure Stack Region Name")] [ValidatePattern('(?# Region must be alphanumeric)^[a-zA-Z0-9]+$')] [string] $RegionName, [Parameter(Mandatory=$true, ParameterSetName='ConfigValidation', HelpMessage="Enter Azure Stack External FQDN")] [Parameter(Mandatory=$true, ParameterSetName='CustomValidation', HelpMessage="Enter Azure Stack External FQDN")] [Parameter(Mandatory=$true, ParameterSetName='AzureStackEdgeDevice', HelpMessage="Enter Azure Stack External FQDN")] [Alias("ExternalDomainName", "FQDN")] [ValidateScript( {[System.Uri]::CheckHostName($_) -eq 'dns' <#FQDN must be valid DNSHostName#>})] [string] $ExternalFQDN, [Parameter(Mandatory = $true, HelpMessage = "Enter Password for PFX Certificates as a secure string" )] [ValidateScript({` Test-PasswordLength -MinimumCharactersInPassword 8 -Password $PSITEM -CredentialDescription 'pfxPassword' Test-PasswordComplexity -Password $PSITEM -CredentialDescription 'pfxPassword' })] [securestring] $pfxPassword, [Parameter(Mandatory = $true, ParameterSetName = "JSON", HelpMessage = "Enter Path to DeploymentData.json")] [ValidateScript( {Test-Path $_ -Include *.json})] [string] $deploymentDataJSONPath, [Parameter(Mandatory = $true, ParameterSetName = "CustomValidation", HelpMessage = "Custom Hashtable for custom validation. Minimum required info: @{'CertificateName' = @{DNSName= @('*.rpnamespace')}} where DNSName declared everything left of externalfqdn.com.")] [hashtable] $customCertConfig, [Parameter(HelpMessage = "Directory path for log and report output")] [string]$OutputPath = "$ENV:TEMP\AzsReadinessChecker", [Parameter(HelpMessage = "Remove all previous progress and create a clean report")] [switch]$CleanReport = $false ) DynamicParam { $certificateConfigDataFile = Import-PowerShellDataFile -Path $PSScriptRoot\Microsoft.AzureStack.CertificateConfig.psd1 $RuntimeParamDic = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary if ('AzureStackEdgeDevice' -in $certificateType) { $ParamAttrib = New-Object System.Management.Automation.ParameterAttribute $ParamAttrib.Mandatory = $true $ParamAttrib.ParameterSetName = 'AzureStackEdgeDevice' $AttribColl = New-Object System.Collections.ObjectModel.Collection[System.Attribute] $AttribColl.Add($ParamAttrib) # Create addition parameters for AzureStackEdgeDevice $RuntimeParam = New-Object System.Management.Automation.RuntimeDefinedParameter('DeviceName', [string], $AttribColl) $RuntimeParamDic.Add('DeviceName', $RuntimeParam) $RuntimeParam = New-Object System.Management.Automation.RuntimeDefinedParameter('NodeSerialNumber', [string[]], $AttribColl) $RuntimeParamDic.Add('NodeSerialNumber', $RuntimeParam) } elseif ('Deployment' -in $certificateType) { $ParamAttrib = New-Object System.Management.Automation.ParameterAttribute $ParamAttrib.Mandatory = $false $ParamAttrib.ParameterSetName = 'ConfigValidation' $ParamAttrib.HelpMessage = "Specify the target identity system (only required for deployment/infrastructure certificates)" $AttribColl = New-Object System.Collections.ObjectModel.Collection[System.Attribute] $AttribColl.Add($ParamAttrib) $ValidateSetAttribute = New-Object System.Management.Automation.ValidateSetAttribute(@('AAD','ADFS')) # Add the ValidateSet to the attributes collection $AttribColl.Add($ValidateSetAttribute) $PSBoundParameters["IdentitySystem"] = "AAD" # Create addition parameters for AzureStackHub deployment certificates $RuntimeParam = New-Object System.Management.Automation.RuntimeDefinedParameter('IdentitySystem', [string], $AttribColl) $RuntimeParamDic.Add('IdentitySystem', $RuntimeParam) } return $RuntimeParamDic } process { $thisFunction = $MyInvocation.MyCommand.Name $GLOBAL:OutputPath = $OutputPath Import-Module $PSScriptRoot\..\Microsoft.AzureStack.ReadinessChecker.Reporting.psm1 -Force Write-Header -invocation $MyInvocation -params $PSBoundParameters # Get/Clean Existing Report $readinessReport = Get-AzsReadinessProgress -clean:$CleanReport $readinessReport = Add-AzsReadinessCheckerJob -report $readinessReport if ($PSCmdlet.ParameterSetName -eq 'JSON') { if ($deploymentDataJSONPath) { # detect deployment type, get region name and fqdn, and set useADFS flag and directory name $deploymentDataJSON = ConvertTo-DeploymentData -path $deploymentDataJSONPath $RegionName = $deploymentDataJSON.DeploymentData.RegionName $externalFQDN = $deploymentDataJSON.DeploymentData.ExternalDomainFQDN if ($deploymentDataJSON.DeploymentData.UseAdfs) { $UseADFS = $true $dirName = 'ADFS' } elseif ($deploymentDataJSON.DeploymentData.InfraAzureEnvironment) { $UseADFS = $false $dirName = 'AAD' } else { Write-Error -message "Failed to parse identity store in DeploymentJSON" } } } else { switch ($PSBoundParameters.IdentitySystem) { 'ADFS' { $UseADFS = $true; $dirName = 'ADFS' } 'AAD' { $UseADFS = $false; $dirName = 'AAD' } } } # Join RegionName and ExternalFQDN if ($regionName -and $CertificateType -ne 'AzureStackEdgeDevice') { $ExternalFQDN = "{0}" -f (($regionName,$ExternalFQDN) -join '.') } # Get certificate Config if ($customCertConfig) { # Test custom cert structure $customCertConfig = Test-CustomCertConfig -customCertConfig $customCertConfig if (-not $customCertConfig) { Write-AzsReadinessLog -Message "Please correct the custom certificate configuration and retry." -Type Error -Function $thisFunction -toScreen break } $certConfig = $customCertConfig } else { # Get declared configs $CertificateType = $PSBoundParameters.CertificateType $certificateConfigDataFile = Import-PowerShellDataFile -Path $PSScriptRoot\Microsoft.AzureStack.CertificateConfig.psd1 $certConfig = $certificateConfigDataFile.CertificateTypes[$certificateType] if (-not $UseADFS) { $certConfig.Remove('Graph') $certConfig.Remove('ADFS') } } # Validate certificate placement (single cert in one folder for single certs, multiple correctly named folders for multiple certs (e.g. infra/AppServices)) Test-AzsCertificatePlacement -UseADFS:$UseADFS -certificatePath $CertificatePath -certConfig $certConfig #Validate any certificates Write-Log -Message ("Starting Azure Stack {0} Certificate Validation {1} " -f $certificateType[0],$mod.Version) -Type Info -Function $thisfunction -toScreen $TestAzsCertificatesResults = foreach ($key in $certConfig.keys) { # Handle SANs for Azure Stack Edge certificates with DeviceName and Node serial numbers instead of regionname and fqdn # Append region & fqdn to dnsname for the rest Write-AzsReadinessLog -Message ("Getting pfx content {0}" -f $certConfig.$key.pfxPath) -Type Info -Function $thisFunction $pfxBinary = Get-Content -Path $certConfig.$key.pfxPath -Encoding Byte if (-not $pfxBinary) { Write-AzsReadinessLog -Message ("Invalid PFX {0}" -f $certConfig.$key.pfxPath) -Type Error -Function $thisFunction } $AzureStackEdgeDeviceInternalCertificates = $certificateConfigDataFile.CertificateTypes.AzureStackEdgeDevice.Keys if ($key -in $AzureStackEdgeDeviceInternalCertificates) { $certConfig.$key.DNSName = $certConfig.$key.DNSName | Foreach-Object {$PSITEM.replace('[[DeviceName]]',$PSBoundParameters.DeviceName).replace('[[NodeSerialNumber]]',$PSBoundParameters.NodeSerialNumber)} | Sort-Object $TestAzsRPCertificatesResult = Test-AzSCertificate -CertificateBinary $pfxBinary -CertificatePassword $pfxPassword -ExpectedDomainFQDN $externalFQDN -certConfig $certConfig.$key } else { $TestAzsRPCertificatesResult = Test-AzSCertificate -CertificateBinary $pfxBinary -CertificatePassword $pfxPassword -ExpectedDomainFQDN $externalFQDN -certConfig $certConfig.$key } $TestAzsRPCertificatesResult } # Copy the log certchecker log for now, until migration can occur. Copy-AzsReadinessLogging -ComponentLogFile CertChecker # Write results to readiness report $readinessReport.CertificateValidation.$certificateType = $TestAzsCertificatesResults $readinessReport = Close-AzsReadinessCheckerJob -report $readinessReport $readinessReport.CertificateValidation.$certificateType = Test-CertificateReuse -validationResult $readinessReport.CertificateValidation.$certificateType Write-AzsReadinessProgress -report $readinessReport Write-AzsReadinessReport -report $readinessReport Write-Footer -invocation $MyInvocation } } function Repair-AzsPfxCertificate { <# .SYNOPSIS Re-package PFX files to remediate common packaging problems .DESCRIPTION Import PFX into local machine store, export the package ensuring chain export, encryption usage etc .EXAMPLE PS C:\> Repair-AzsPfxCertificate -PfxPassword $pfxPassword -PfxPath .\certificates\ACSBlob\ACSBlob.pfx -ExportPFXPath .\certificates\ACSBlob\ACSBlob_new.pfx Import ACSBlob PFX and re-exports it to the same folder with a new name. .PARAMETER PfxPassword Specifies the password associated with PFX certificate files. .PARAMETER PfxPath Specifies the path to a problematic certificate that requires import/export routine to fix, as indicated by certificate validation in this tool .PARAMETER ExportPFXPath Specifies the destination path for the resultant PFX file from import/export routine. .PARAMETER OutputPath Specifies custom path to save Readiness JSON report and Verbose log file. .LINK Remediate common issues for Azure Stack PKI certificates - https://aka.ms/AzsRemediateCerts Azure Stack Readiness Checker Tool - https://aka.ms/AzsReadinessChecker .NOTES General notes #> [CmdletBinding()] Param( [Parameter(Mandatory = $false, HelpMessage = "Enter Password for PFX Certificates as a secure string")] [ValidateScript({` Test-PasswordLength -MinimumCharactersInPassword 8 -Password $PSITEM -CredentialDescription 'pfxPassword' Test-PasswordComplexity -Password $PSITEM -CredentialDescription 'pfxPassword' })] [securestring] $pfxPassword, [Parameter(Mandatory = $true, HelpMessage = "Path to PFX on disk", ParameterSetName = "ImportExport")] [ValidateScript( {Test-Path $_ -Include *.pfx -PathType Leaf})] [string] $pfxPath, [Parameter(Mandatory = $true, HelpMessage = "Destination Path for PFX export", ParameterSetName = "ImportExport")] [ValidateScript( {Test-Path -Path (split-path -Path $_ -Parent)})] [string] $ExportPFXPath, [Parameter(HelpMessage = "Directory path for log")] [string]$OutputPath = "$ENV:TEMP\AzsReadinessChecker" ) $thisFunction = $MyInvocation.MyCommand.Name $GLOBAL:OutputPath = $OutputPath Import-Module $PSScriptRoot\..\Microsoft.AzureStack.ReadinessChecker.Reporting.psm1 -Force Write-Header -invocation $MyInvocation -params $PSBoundParameters Write-AzsReadinessLog -Message ("Starting Azure Stack Certificate Import/Export") -Type Info -Function $thisfunction -toScreen Write-AzsReadinessLog -Message "Importing PFX $pfxPath into Local Machine Store" -Type Info -Function $thisfunction -toScreen $certificate = Import-AzsCertificate -pfxPath $pfxPath -pfxPassword $pfxPassword if (-not $certificate) { Write-AzsReadinessLog -Message "Import Failed. Please review log." -Type Error -Function $thisfunction -toScreen } else { Write-AzsReadinessLog -Message "Exporting certificate to $exportPFXPath" -Type Info -Function $thisfunction -toScreen Export-AzsCertificate -filePath $ExportPFXPath -certPath $certificate -pfxPassword $pfxPassword Write-AzsReadinessLog -Message "Export complete. Removing certificate from the local machine store." -Type Info -Function $thisfunction -toScreen Remove-Item $certificate.pspath -Force if (-not (Test-Path $certificate.pspath)) { Write-AzsReadinessLog -Message "Removal complete." -Type Info -Function $thisfunction -toScreen } else { Write-AzsReadinessLog -Message ("Removal incomplete. Please manually remove {0}." -f $certificate.pspath) -Type Warning -Function $thisfunction -toScreen } } Copy-AzsReadinessLogging -ComponentLogFile CertChecker Write-Footer -invocation $MyInvocation } function Set-PFXPlacement { # checks for a single certificate and sets pfxPath in the certConfig param ($path,$certConfig) $thisFunction = $MyInvocation.MyCommand.Name $pfxfiles = Get-ChildItem $path -Filter *.pfx -ErrorAction SilentlyContinue if ($pfxfiles.count -ne 1) { Write-AzsReadinessLog -Message ("The certificate path '{0}' should only contain 1 PFX certificate. {1} PFX files found. `nEnsure all certificate folders only contain a single certificate." -f $path, $pfxfiles.count) -Type Error -Function $thisFunction -toScreen break } else { Write-AzsReadinessLog -Message ("Single PFX found with name '{0}'. Setting pfxPath in certConfig." -f $pfxfiles.FullName) -Type Info -Function $thisFunction $certConfig.$($pfxfiles.Directory.Name).pfxPath = $pfxfiles.FullName Write-AzsReadinessLog -Message ("After") -Type Info -Function $thisFunction } } function Test-CustomCertConfig { param ([hashtable]$customCertConfig) if ($customCertConfig -isnot [HashTable]) { Write-AzsReadinessLog -Message ("Custom Cert Config is not a valid hashtable. `nExpecting at least: `n@{'CertificateName' = @{DNSName= @('*.certificate.domain')}}.") -Type Error -Function $thisfunction -toScreen return $false } foreach ($customCertName in $customCertConfig.Keys) { $customCertHash = $customCertConfig.$customCertName # Check its a hashtable if ($customCertHash -isnot [HashTable]) { Write-AzsReadinessLog -Message ("Custom Cert {0} is not a valid hashtable. `nExpecting at least: `n@{'CertificateName' = @{DNSName= @('*.certificate.domain')}}." -f $customCertName) -Type Error -Function $thisfunction -toScreen return $false } else { $hashToString = ($customCertHash.GetEnumerator() | ForEach-Object { "$($_.Key)=$($_.Value)" }) -join '; ' Write-AzsReadinessLog -Message ("Custom Cert is a valid hashtable @{{{0} = @{{{1}}}}}" -f $customCertName,$hashToString) -Type Info -Function $thisfunction } # Check it has at least a DNSName if (-not $customCertHash.DNSName){ Write-AzsReadinessLog -Message ("Custom cert {0} must contain at least DNSName key. Exiting." -f $customCertName) -Type Error -Function $thisfunction -toScreen return $false } else { Write-AzsReadinessLog -Message ("Custom Config {0} contains DNSName to check" -f $customCertName) -Type Info -Function $thisfunction } # Add include and exclude test if they're not present if (-not $customCertHash.IncludeTests) { Write-AzsReadinessLog -Message ("Custom Config {0}. Adding IncludeTests as 'All'" -f $customCertName) -Type Info -Function $thisfunction $customCertConfig.$customCertName.IncludeTests = 'All' } else { Write-AzsReadinessLog -Message ("Custom Config {0}. IncludeTests contains {1}" -f $customCertName, $customCertHash.IncludeTests) -Type Info -Function $thisfunction } if (-not $customCertHash.ExcludeTests) { Write-AzsReadinessLog -Message ("Custom Config {0}. Adding ExcludeTests as 'CNG Key'" -f $customCertName) -Type Info -Function $thisfunction $customCertConfig.$customCertName.ExcludeTests = 'CNG Key' } else { Write-AzsReadinessLog -Message ("Custom Config {0}. ExcludeTests contains {1}" -f $customCertName, $customCertHash.ExcludeTests) -Type Info -Function $thisfunction } } $customCertConfig } function New-AzsCertificateFolder { <# .SYNOPSIS Create folder structure Azure Stack Certificates .DESCRIPTION Create folder structure Azure Stack Certificates .EXAMPLE New-AzsCertificateFolder -certificateType Deployment -IdentitySystem AAD -OutputPath C:\SecureStore\AzureStack Create Deployment Folders in C:\SecureStore\AzureStack\Deployment .EXAMPLE New-AzsCertificateFolder -certificateType AppServices -OutputPath C:\SecureStore\AzureStack Create AppServices Folders in C:\SecureStore\AzureStack\AppServices .EXAMPLE New-AzsCertificateFolder -certificateType EventHubs -OutputPath C:\SecureStore\AzureStack Create EventHubs Folders in C:\SecureStore\AzureStack\EventHubs .EXAMPLE New-AzsCertificateFolder -certificateType IoTHub -OutputPath C:\SecureStore\AzureStack Create IoTHub Folders in C:\SecureStore\AzureStack\IoTHub .EXAMPLE New-AzsCertificateFolder -certificateType DataboxEdge -OutputPath C:\SecureStore\AzureStack Create DataboxEdge Folders in C:\SecureStore\AzureStack\DataboxEdge .EXAMPLE New-AzsCertificateFolder -certificateType AzureStackEdgeDevice -OutputPath C:\SecureStore\AzureStack Create Azure Stack Edge Folders in C:\SecureStore\AzureStack\AzureStackEdgeDevice .EXAMPLE New-AzsCertificateFolder -certificateType DBAdapter -OutputPath C:\SecureStore\AzureStack Create DBAdapter Folders in C:\SecureStore\AzureStack\DBAdapter .NOTES General notes #> [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'Medium')] param ( [Parameter(Mandatory = $true, HelpMessage = "Destination Path for Certificate")] [string]$OutputPath, [Parameter(Mandatory = $false, HelpMessage = "Enter Azure Stack Identity System (AAD or ADFS) when generating deployment certificates")] [ValidateSet('AAD', 'ADFS')] [string]$IdentitySystem ) DynamicParam { #Certificate Type Param $ParamAttrib = New-Object System.Management.Automation.ParameterAttribute $ParamAttrib.Mandatory = $true $ParamAttrib.ParameterSetName = '__AllParameterSets' $AttribColl = New-Object System.Collections.ObjectModel.Collection[System.Attribute] $AttribColl.Add($ParamAttrib) $certificateConfigDataFile = Import-PowerShellDataFile -Path $PSScriptRoot\..\CertificateValidation\Microsoft.AzureStack.CertificateConfig.psd1 $certificateTypes = $certificateConfigDataFile.CertificateTypes | Select-Object -ExpandProperty Keys $AttribColl.Add((New-Object System.Management.Automation.ValidateSetAttribute($certificateTypes))) $RuntimeParam = New-Object System.Management.Automation.RuntimeDefinedParameter('CertificateType', [string], $AttribColl) $RuntimeParamDic = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary $RuntimeParamDic.Add('CertificateType', $RuntimeParam) return $RuntimeParamDic } process { try { # Get Certificate Config $CertificateType = $PSBoundParameters.CertificateType $certificateConfig = $certificateConfigDataFile.CertificateTypes[$CertificateType] if ($certificateType -eq 'Deployment' -AND $IdentitySystem -ne 'ADFS') { $certificateConfig.Remove('Graph') $certificateConfig.Remove('ADFS') } # Create Folder Structure if ($certificateConfig.Keys.count -eq 1) { $destination = $OutputPath } else{ $destination = Join-Path -Path $OutputPath -ChildPath $CertificateType } Foreach ($key in $certificateConfig.keys) { $newFolder = Join-Path -Path $destination -ChildPath $key New-Item -Path $newFolder -ItemType Directory -Force } } catch { throw $_.exception } } } function Get-AzsCertificateTypes { param ([string[]]$certificateTypeExclusions = @('Hardware')) $certificateConfigDataFile = Import-PowerShellDataFile -Path $PSScriptRoot\Microsoft.AzureStack.CertificateConfig.psd1 $certificateTypes = $certificateConfigDataFile.CertificateTypes | Select-Object -ExpandProperty Keys | Where-Object {$PSITEM -notin $certificateTypeExclusions} $certificateTypes + 'Custom' | Sort-Object } # SIG # Begin signature block # MIIjhAYJKoZIhvcNAQcCoIIjdTCCI3ECAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCApJjuIs9Q6GFrg # sZomt4SUcKKoslmGwosYlY5aUxlNFaCCDYEwggX/MIID56ADAgECAhMzAAABUZ6N # j0Bxow5BAAAAAAFRMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p # bmcgUENBIDIwMTEwHhcNMTkwNTAyMjEzNzQ2WhcNMjAwNTAyMjEzNzQ2WjB0MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB # AQCVWsaGaUcdNB7xVcNmdfZiVBhYFGcn8KMqxgNIvOZWNH9JYQLuhHhmJ5RWISy1 # oey3zTuxqLbkHAdmbeU8NFMo49Pv71MgIS9IG/EtqwOH7upan+lIq6NOcw5fO6Os # +12R0Q28MzGn+3y7F2mKDnopVu0sEufy453gxz16M8bAw4+QXuv7+fR9WzRJ2CpU # 62wQKYiFQMfew6Vh5fuPoXloN3k6+Qlz7zgcT4YRmxzx7jMVpP/uvK6sZcBxQ3Wg # B/WkyXHgxaY19IAzLq2QiPiX2YryiR5EsYBq35BP7U15DlZtpSs2wIYTkkDBxhPJ # IDJgowZu5GyhHdqrst3OjkSRAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE # AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUV4Iarkq57esagu6FUBb270Zijc8w # UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 # ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDU0MTM1MB8GA1UdIwQYMBaAFEhu # ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu # bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w # Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 # Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx # MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAWg+A # rS4Anq7KrogslIQnoMHSXUPr/RqOIhJX+32ObuY3MFvdlRElbSsSJxrRy/OCCZdS # se+f2AqQ+F/2aYwBDmUQbeMB8n0pYLZnOPifqe78RBH2fVZsvXxyfizbHubWWoUf # NW/FJlZlLXwJmF3BoL8E2p09K3hagwz/otcKtQ1+Q4+DaOYXWleqJrJUsnHs9UiL # crVF0leL/Q1V5bshob2OTlZq0qzSdrMDLWdhyrUOxnZ+ojZ7UdTY4VnCuogbZ9Zs # 9syJbg7ZUS9SVgYkowRsWv5jV4lbqTD+tG4FzhOwcRQwdb6A8zp2Nnd+s7VdCuYF # sGgI41ucD8oxVfcAMjF9YX5N2s4mltkqnUe3/htVrnxKKDAwSYliaux2L7gKw+bD # 1kEZ/5ozLRnJ3jjDkomTrPctokY/KaZ1qub0NUnmOKH+3xUK/plWJK8BOQYuU7gK # YH7Yy9WSKNlP7pKj6i417+3Na/frInjnBkKRCJ/eYTvBH+s5guezpfQWtU4bNo/j # 8Qw2vpTQ9w7flhH78Rmwd319+YTmhv7TcxDbWlyteaj4RK2wk3pY1oSz2JPE5PNu # Nmd9Gmf6oePZgy7Ii9JLLq8SnULV7b+IP0UXRY9q+GdRjM2AEX6msZvvPCIoG0aY # HQu9wZsKEK2jqvWi8/xdeeeSI9FN6K1w4oVQM4Mwggd6MIIFYqADAgECAgphDpDS # AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK # V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 # IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 # ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla # MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS # ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT # H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB # AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG # OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S # 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz # y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 # 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u # M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 # X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl # XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP # 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB # l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF # RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM # CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ # BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud # DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO # 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 # LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y # Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p # Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y # Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB # FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw # cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA # XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY # 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj # 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd # d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ # Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf # wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ # aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j # NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B # xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 # eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 # r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I # RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVWTCCFVUCAQEwgZUwfjELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z # b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAVGejY9AcaMOQQAAAAABUTAN # BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor # BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgU9EYu6iU # HrXityyh2cJMM+ljy1QUM8xTGsAh4HXrhfowQgYKKwYBBAGCNwIBDDE0MDKgFIAS # AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN # BgkqhkiG9w0BAQEFAASCAQCM7D/v6YQAp+33nXH8MzjYjJXALhQ2hLd3to9aDeGz # sg2/ivmFBAbnlXr45UryF5QUYrxWdt5YSNPNYNPh3szlXNcbUzh/UDGTN7xd3tI6 # wfIYoDknx08NNQlkw8v2vHYGTLb1i8mYsLjchepmja9L3HAzLHrLXXiOmoXyo72s # IZODwKedLGWOBc6aJ+DJfnYVT9RDi+yuhTxKETTaYMdrAxCNu2qloFjNV5WxQroO # 2FFI/VUl/6EG8jKnrojzCZ44zpV5Yknb+g9erYepLBKoAf3H+WOwRYB82oVrecmp # wtCqUzfBRKb7UFEV1WsBpTszr9AZ98xbNUR5dmNAM76ToYIS4zCCEt8GCisGAQQB # gjcDAwExghLPMIISywYJKoZIhvcNAQcCoIISvDCCErgCAQMxDzANBglghkgBZQME # AgEFADCCAU8GCyqGSIb3DQEJEAEEoIIBPgSCATowggE2AgEBBgorBgEEAYRZCgMB # MDEwDQYJYIZIAWUDBAIBBQAEIJy1aMkCbXCObZm7VHBzJfaJXk46qq6zFLYZxW3e # sm8VAgZeQwoTYQsYETIwMjAwMjEyMjIwNzIwLjlaMASAAgH0oIHQpIHNMIHKMQsw # CQYDVQQGEwJVUzELMAkGA1UECBMCV0ExEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV # BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly # ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT # Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg # U2VydmljZaCCDjwwggTxMIID2aADAgECAhMzAAABClLIOQFS0XBLAAAAAAEKMA0G # CSqGSIb3DQEBCwUAMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u # MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp # b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTE5 # MTAyMzIzMTkxNVoXDTIxMDEyMTIzMTkxNVowgcoxCzAJBgNVBAYTAlVTMQswCQYD # VQQIEwJXQTEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENv # cnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25z # IExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3 # MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIIBIjANBgkq # hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuz4brZShcMWfhnj1P1dKTJHtteR0l/D3 # C19YY2FG8ghEQRbO/8BMK28DCGXTqOzQ6nCFIV17d5MYNTqgScbqM1XAifCcEcv1 # SO/adWXi20r92jDMaLjs6KmjS/w5m/Ak/VBHKqtzxdfLzL9XGX5PGaYblUhjzNHl # rCbxNZHz1wibGM7Gbbq6tIxCOlwYfYabikKvCkl76KghN+xGVq2Fst7oUSZ7K3eE # 6tmIGLMlkP2kBdtHW+92VsCLVxuE1JcuCENKXEIvf1B937FbtOqvP8jb3OzHyHJp # 2DlDzshTAYdBFudfSv5oP8WIDIbZmZZ85rx56+Z6cyU4sGwboZ8FJwIDAQABo4IB # GzCCARcwHQYDVR0OBBYEFPhElKX9OkxNUN6R+DqtAaKRcYUoMB8GA1UdIwQYMBaA # FNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9j # cmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1RpbVN0YVBDQV8y # MDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6 # Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3RhUENBXzIwMTAt # MDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYBBQUHAwgwDQYJ # KoZIhvcNAQELBQADggEBAFSXrnzUFfLd03MlqtErt51WGX3UXFeorE6dGY+YIwSm # fFRKRNwEe8cmLt0EOxezyTV6+/fdYTyrPcPDvgR3k6F5sHeKExohjrqcjxAa3yVQ # 9SJZakXZVKzaHWzbvMuA8kcmzj0J/Y6/pk57aFsp/kr+lu5aNdw5V3WgitJYpwE6 # foZQsBrTTPNRhIXVMHnPEk6s2+7nC6Ty9ZLIJhYeMyqLuitJGKvEiRhD8PYzkGJn # Lkjp61ICDk/00ZVZvvlXLonth32ZooeZ9/+760o9g2lUhF8oaLHCB1i82dUChXdz # ZulUEwQ5CZWh8WIjQZSUuvOO1vV0FfOqdNwcDyXuFdIwggZxMIIEWaADAgECAgph # CYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UE # CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z # b2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZp # Y2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0yNTA3MDEyMTQ2 # NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH # EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNV # BAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjANBgkqhkiG9w0B # AQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RUENWlCgCChfvt # fGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBED/FgiIRUQwzX # Tbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50YWeRX4FUsc+T # TJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd/XcfPfBXday9 # ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaRtogINeh4HLDp # mc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQABo4IB5jCCAeIw # EAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8RhvFM2hahW1V # MBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIBhjAPBgNVHRMB # Af8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fOmhjEMFYGA1Ud # HwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3By # b2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggrBgEFBQcBAQRO # MEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2Vy # dHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSABAf8EgZUwgZIw # gY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3dy5taWNyb3Nv # ZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEFBQcCAjA0HjIg # HQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBtAGUAbgB0AC4g # HTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Ehb7Prpsz1Mb7P # BeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7uVOMzPRgEop2 # zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqRUgCvOA8X9S95 # gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9Va8v/rbljjO7 # Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8+n99lmqQeKZt # 0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+Y1klD3ouOVd2 # onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh2rBQHm+98eEA # 3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRyzR30uIUBHoD7 # G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoouLGp25ayp0Ki # yc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx16HSxVXjad5X # wdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341Hgi62jbb01+P # 3nSISRKhggLOMIICNwIBATCB+KGB0KSBzTCByjELMAkGA1UEBhMCVVMxCzAJBgNV # BAgTAldBMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y # cG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMg # TGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcx # JTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoBATAHBgUr # DgMCGgMVADm9dqVx0X/uUa0VckV24hpoY975oIGDMIGApH4wfDELMAkGA1UEBhMC # VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV # BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp # bWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDh7toPMCIYDzIwMjAw # MjEzMDQwOTUxWhgPMjAyMDAyMTQwNDA5NTFaMHcwPQYKKwYBBAGEWQoEATEvMC0w # CgIFAOHu2g8CAQAwCgIBAAICD+UCAf8wBwIBAAICEakwCgIFAOHwK48CAQAwNgYK # KwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEKMAgCAQAC # AwGGoDANBgkqhkiG9w0BAQUFAAOBgQBksC0Qizg8g9xQnw8EoKXnJTFq3+CSiL+K # w1PfqPc9ciAjvQfiKDR0OcT7R6rV0JRJ6aNUpCpzOK7dFB+ZIft32cjr5xSkOtCj # tUNNpdpss0TB5M6g2jUBf3rkcgdhttFUzLsUVZ5Y33tJyguSageWmrvKPtrQMvYN # 5r31PG7L8DGCAw0wggMJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX # YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg # Q29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAy # MDEwAhMzAAABClLIOQFS0XBLAAAAAAEKMA0GCWCGSAFlAwQCAQUAoIIBSjAaBgkq # hkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIHkfvPcapAw # ocvyL+6f/G4SMN7hGx/h/tJoqnv4pnKbMIH6BgsqhkiG9w0BCRACLzGB6jCB5zCB # 5DCBvQQgVwM2JDO6oQwoDehG8V22bUdxzZDWWhkjGB83y+TSrKowgZgwgYCkfjB8 # MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVk # bW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1N # aWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAQpSyDkBUtFwSwAAAAAB # CjAiBCBToENP1d1eIw+kC5u6vxgttIcIEoBr9q/F+N4qOj8sIjANBgkqhkiG9w0B # AQsFAASCAQBFleP1377bEuTDSS9lDNZECt6z4/LIQOsFmIWe0eZQ7PsytjDNUwG7 # QwXHtoZnm2fpWEkZquWaFz2SijwECKFTzFCVJivZiKG/x36wbsSEPT+hxvRD+Gp6 # EL18tXosCFgO4AZlLoRvClg38db8oMrFzh2hV4WvYzpzSazs2czDmKUcH0vZminS # lzL5pAu7MoWtPYmidTKfkm8siyiALhEa7cbroVzNCLBH549FIqyjkNk24VcBcfpY # v/lj12lq4Qa7ANhKH1RgrdMLk4jozOWt5c3pPozWK1YMzYEVqni8UQO77Sw+pp2y # VP9SXEa936FCDvrw6Vy7JYf2lkJf0TR1 # SIG # End signature block |