< Back

ConvertTo-CipherText

Sat Jan 18, 2020 9:39 am

NAME ConvertTo-CipherText



SYNOPSIS

Returns cipher text from plain text.





SYNTAX

ConvertTo-CipherText [-PlainText] <String> [<CommonParameters>]





DESCRIPTION

Pass an alphabetic, with a length no greater then 6 to this function to get a cipher text value. In

cryptography, this algorithm is referred to more specifically as 'simple-substitution' cipher.





PARAMETERS

-PlainText <String>

Message to convert to cipher text



Required? true

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



NOTES





This function will multiple the value by 10 before returning.



-------------------------- EXAMPLE 1 --------------------------



C:\\>ConvertTo-PlainText 'BOB'



C:\\> 10410











RELATED LINKS