<% %> Cipher Main

Create Cipher

Enter a phrase below:


<% dim strKey ' as string if Request("data") <> "" then response.write "
" response.write "Encoded phrase is:
" response.write "
"
	response.write pConvertToCipher ( Request("data"), strKey )
	response.write "
" response.write "Using this Cipher Key:
" response.write "
"
	response.write strKey
	response.write "
" response.write "To revert back to the original phrase:
" response.write "" end if %>