-
Notifications
You must be signed in to change notification settings - Fork 15
/
ProtectedData.psd1
43 lines (36 loc) · 1.69 KB
/
ProtectedData.psd1
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
#
# Module manifest for module 'ProtectedData'
#
# Generated by: Dave Wyatt
#
# Generated on: 5/26/2014
#
@{
ModuleToProcess = 'ProtectedData.psm1'
ModuleVersion = '4.1.3'
GUID = 'fc6a2f6a-563d-422a-85b5-9638e45a370e'
Author = 'Dave Wyatt'
CompanyName = 'Home'
Copyright = 'Copyright 2014 Dave Wyatt'
Description = 'Encrypt and share secret data between different users and computers.'
PowerShellVersion = '2.0'
DotNetFrameworkVersion = '3.5'
FunctionsToExport = 'Protect-Data', 'Unprotect-Data', 'Get-ProtectedDataSupportedTypes',
'Add-ProtectedDataCredential', 'Remove-ProtectedDataCredential',
'Get-KeyEncryptionCertificate', 'Add-ProtectedDataHmac'
PrivateData = @{
PSData = @{
# The primary categorization of this module (from the TechNet Gallery tech tree).
Category = 'Scripting Techniques'
# Keyword tags to help users find this module via navigations and search.
Tags = @('powershell','encryption')
# The web address of this module's project or support homepage.
ProjectUri = 'https://github.com/dlwyatt/ProtectedData'
# The web address of this module's license. Points to a page that's embeddable and linkable.
LicenseUri = 'https://www.apache.org/licenses/LICENSE-2.0.html'
# Indicates this is a pre-release/testing version of the module.
IsPrerelease = 'False'
ReleaseNotes = 'Updated parameter names to be compatible with latest PowerShell 5.0 Preview.'
}
}
}