icinga-powershell-framework/lib/core/tools/ConvertTo-IcingaSecureString.psm1

13 lines
247 B
PowerShell
Raw Normal View History

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