-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPSCertUtils.psd1
More file actions
61 lines (54 loc) · 2.03 KB
/
PSCertUtils.psd1
File metadata and controls
61 lines (54 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@{
RootModule = 'PSCertUtils.psm1'
ModuleVersion = '0.3.0'
GUID = '245cc162-e088-4295-81e4-febbb16ca4bf'
Author = 'Dominic S.'
CompanyName = 'ME'
Description = 'PowerShell module with functions for X509Certificate handling and easy installation of trusted root certificates.'
#ProjectUri = 'https://github.com/DimeOne/PSCertUtils'
#LicenseUri = 'https://github.com/DimeOne/PSCertUtils/blob/master/LICENSE'
#IconUri = 'https://raw.githubusercontent.com/DimeOne/PSCertUtils/master/assets/PSCertUtils.png'
NestedModules = @(
"PSCertUtils.Helpers.psm1",
"PSCertUtils.Bundles.psm1",
"PSCertUtils.Windows.psm1",
"PSCertUtils.Linux.psm1",
"PSCertUtils.Java.psm1",
"PSCertUtils.Git.psm1"
)
FunctionsToExport = @(
'Get-X509Certificate',
'Export-X509Certificate',
'Export-X509CertificatePfx',
"Get-X509CommonNameFromSubject",
"Install-X509CertificateToTrustedStores",
"Install-X509CertificateToWindowsCertStore",
"Install-X509CertificateToLinuxTrustedStore",
"Install-X509CertificateToJavaTrustedCaKeystores",
"Install-X509CertificateToGitTrustedCaBundle",
"Get-SafeCertificateAlias",
"Get-JavaHomes",
"Get-JavaHomeCertStoreLocations",
"Get-JavaCertStores",
"Import-TrustedCaCertificateToJavaKeystore",
"Add-TrustedCaCertificateToJavaKeystore",
"Test-CertificateExistsWithinJavaKeystore",
"Get-GitCurlBundlePath",
"Import-X509CertificateToBundle",
"Add-X509CertificateToBundle",
"Test-X509CertificateExistsWithinBundle",
"New-PSCertUtilsStandaloneScript"
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @("Certitifcate", "Cert", "CertUtils", "Install", "Setup", "Security", "Trust", "Root")
LicenseUri = 'https://github.com/DimeOne/PSCertUtils/blob/master/LICENSE'
ProjectUri = 'https://github.com/DimeOne/PSCertUtils'
IconUri = 'https://raw.githubusercontent.com/DimeOne/PSCertUtils/master/assets/PSCertUtils.png'
# ReleaseNotes = ''
}
}
}