-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild__01__credentials.ps1
136 lines (100 loc) · 3.95 KB
/
build__01__credentials.ps1
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
################################################
#
# SCRIPT ROOT
#
################################################
# Load scriptpath
if ($MyInvocation.MyCommand.CommandType -eq "ExternalScript") {
$scriptPath = Split-Path -Parent -Path $MyInvocation.MyCommand.Definition
} else {
$scriptPath = Split-Path -Parent -Path ([Environment]::GetCommandLineArgs()[0])
}
Set-Location -Path $scriptPath
################################################
#
# SETTINGS
#
################################################
# Load settings
$settingsFilename = "settings.json"
$functionsSubfolder = "functions"
# Load settings
$settings = Get-Content -Path "$( $scriptPath )\$( $settingsFilename )" -Encoding UTF8 -Raw | ConvertFrom-Json
################################################
#
# FUNCTIONS
#
################################################
# load assemblies
Add-Type -AssemblyName System.Security
Get-ChildItem -Path ".\$( $functionsSubfolder )" | ForEach {
. $_.FullName
}
################################################
#
# ENCRYPTION KEYS
#
################################################
# create encryption keys
$cspParams = New-Object "System.Security.Cryptography.CspParameters"
$cspParams.KeyContainerName = $settings.encryption.keyContainerName
$rsaKey = [System.Security.Cryptography.RSACryptoServiceProvider]::new($cspParams)
$keyName = $settings.encryption.keyName
# create encryption key
$sessionKey = new-object "System.Security.Cryptography.RijndaelManaged"
$sessionKey.KeySize = $settings.encryption.keySize
################################################
#
# CREATE XML FILE
#
################################################
$variables = [PSCustomObject]@{
"databaseUser" = Read-Host "Please enter the username for the database"
"databasePassword" = "secure#$( Read-Host "Please enter the password for the database" -AsSecureString | convertfrom-securestring )"
}
$variablesXML = $variables | ConvertTo-Xml
################################################
#
# ENCRYPTION XML PARTS
#
################################################
# load xml file
#$xml = New-Object "xml"
#$xml.PreserveWhitespace
#$xml.Load($settings.variablesXML)
$xml = $variablesXML
$settings.encryption.elementsToEncrypt | ForEach {
$tag = $_
# select the xml element
$xmlElement = $xml.GetElementsByTagName($tag)[0]
# encrypt xml element
$eXml = new-object "System.Security.Cryptography.Xml.EncryptedXml"
$encryptedElement = $eXml.EncryptData($xmlElement,$sessionKey,$false)
# describe encryption
$edElement = New-Object "System.Security.Cryptography.Xml.EncryptedData"
$edElement.Type = [System.Security.Cryptography.Xml.EncryptedXml]::XmlEncElementUrl
$edElement.Id = $tag
$edElement.EncryptionMethod = [System.Security.Cryptography.Xml.EncryptedXml]::XmlEncAES256Url
#$edElement.CipherData.CipherValue = $encryptedElement
# create encrypted key
$ek = New-Object "System.Security.Cryptography.Xml.EncryptedKey"
$encryptedKey = [System.Security.Cryptography.Xml.EncryptedXml]::EncryptKey($sessionKey.Key, $rsaKey, $false)
$ek.CipherData = [System.Security.Cryptography.Xml.CipherData]::new($encryptedKey)
$ek.EncryptionMethod = [System.Security.Cryptography.Xml.EncryptionMethod]::new([System.Security.Cryptography.Xml.EncryptedXml]::XmlEncRSA15Url)
# create data reference
$dRef = New-Object "System.Security.Cryptography.Xml.DataReference"
$dRef.Uri = "#" + $tag
$ek.AddReference($dRef)
$edElement.KeyInfo.AddClause([System.Security.Cryptography.Xml.KeyInfoEncryptedKey]::new($ek))
# create key info
$kin = New-Object "System.Security.Cryptography.Xml.KeyInfoName"
$kin.Value = $keyName
$ek.KeyInfo.AddClause($kin)
$edElement.CipherData.CipherValue = $encryptedElement
# replace element
[System.Security.Cryptography.Xml.EncryptedXml]::ReplaceElement($xmlElement,$edElement,$false)
}
# save the xml
$xml.Save($settings.variablesXML)
# finally
$sessionKey.Clear()