Skip to content

Latest commit

 

History

History
36 lines (33 loc) · 1.88 KB

File metadata and controls

36 lines (33 loc) · 1.88 KB

ConvertTo-LTSecurity

SYNOPSIS

This function encodes a value compatible with LT operations.

SYNTAX

ConvertTo-LTSecurity [-InputString] <String> [[-Key] <Object>] [<CommonParameters>]

DESCRIPTION

This function encodes the provided string using the specified or default key.

PARAMETERS

-InputString <String>

This is the string to be encoded.

Required                    true
Position                    1
Default value
Accept pipeline input       false
Accept wildcard characters  false

-Key <Object>

This is the key used for encoding. If not provided, a default value will be used.

Required                    false
Position                    2
Default value
Accept pipeline input       false
Accept wildcard characters  false

NOTES

Version: 1.1

Author: Darren White

Creation Date: 1/25/2018

Purpose/Change: Initial function development