Public/DPIAPI/UnProtect-Data.ps1
function UnProtect-Data { <# .SYNOPSIS Unprotects data .DESCRIPTION A longer description of the function, its purpose, common use cases, etc. .NOTES Information or caveats about the function e.g. 'This function is not fully supported in Linux' .LINK https://github.com/chadnpc/cliHelper.xcrypt/blob/main/Public/UnProtect-Data.ps1 .EXAMPLE UnProtect-Data $secretMsg #> [CmdletBinding(ConfirmImpact = "Medium", DefaultParameterSetName = 'string', SupportsShouldProcess = $true)] [Alias('UnProtect')] [OutputType([byte[]])] param ( [Parameter(Mandatory = $true, Position = 0, ParameterSetName = 'String')] [ValidateNotNullOrEmpty()] [string]$MSG, [Parameter(Mandatory = $true, Position = 0, ParameterSetName = 'SecureString')] [ValidateNotNullOrEmpty()] [securestring]$SecureMSG, [Parameter(Mandatory = $true, Position = 0, ParameterSetName = 'Bytes')] [ValidateNotNullOrEmpty()] [byte[]]$Bytes, [Parameter(Mandatory = $true, Position = 0, ParameterSetName = 'Xml')] [ValidateNotNullOrEmpty()] [Alias('XmlDoc')] [xml]$InputXml, [Parameter(Mandatory = $false, Position = 1, ParameterSetName = '__A llParameterSets')] [ValidateSet('User', 'Machine')] [ValidateNotNullOrEmpty()] [Alias('ProtectionScope')] [string]$Scope = 'User', [Parameter(Mandatory = $false, Position = 2, ParameterSetName = '__AllParameterSets')] [ValidateNotNullOrEmpty()] [byte[]]$Entropy ) begin { #Load The Assemblies if (!("System.Security.Cryptography.ProtectedData" -is 'Type')) { Add-Type -AssemblyName System.Security } [bool]$UseCustomEntropy = $null -ne $Entropy -and $PsCmdlet.MyInvocation.BoundParameters.ContainsKey('Entropy') } process { $UnProtected = switch ($PsCmdlet.ParameterSetName) { 'Xml' { if ($PSCmdlet.ShouldProcess("Xml", "Protect")) { if ($UseCustomEntropy) { [xconvert]::FromProtected($($InputXml | xconvert ToBytes), $Entropy, $Scope) } else { throw [System.NotImplementedException]::new("Not yet implemented") } } } 'string' { if ($PSCmdlet.ShouldProcess("String", "Protect")) { if ($UseCustomEntropy) { [xconvert]::FromProtected($Msg, $Entropy, $Scope) } else { [xconvert]::FromProtected($Msg, $Scope) } } } 'Bytes' { if ($PSCmdlet.ShouldProcess("Bytes", "Protect")) { if ($UseCustomEntropy) { [xconvert]::FromProtected($Bytes, $Entropy, $Scope) } else { [xconvert]::FromProtected($Bytes, $Scope) } } } 'SecureString' { if ($PSCmdlet.ShouldProcess("String", "Protect")) { if ($UseCustomEntropy) { [xconvert]::FromProtected(($SecureMSG | xconvert Tostring), $Entropy, $Scope) } else { [xconvert]::FromProtected(($SecureMSG | xconvert Tostring), $Scope) } } } Default { throw 'Error!' } } } end { return $UnProtected } } |