icinga-powershell-framework/lib/core/tools/ConvertTo-IcingaSecureString.psm1
2019-10-17 09:57:16 +02:00

12 lines
247 B
PowerShell

<#
# Helper class allowing to easily convert strings into SecureStrings
# and vice-versa
#>
function ConvertTo-IcingaSecureString()
{
param(
[string]$String
);
return (ConvertTo-SecureString -AsPlainText $string -Force);
}