Private/Get-PrivateInfo.ps1

function Get-PrivateInfo {
    [CmdletBinding()]
    param (
        
    )
    
    begin {
        
    }
    
    process {
        return "PrivateKey"
    }
    
    end {
        
    }
}