Index of /dee/software/ST/crypt

Name                    Last modified      Size  Description
Parent Directory                             -   
README.html             2022-09-25 15:57  534   
SHA256.txt              2022-09-25 15:57   76   
crypt.exe               2022-09-25 15:57   38K  
crypt.m2.txt            2022-09-25 15:57  699   
PROGRAM
	crypt - encrypt and decrypt standard input and print to standard output
USAGE
	crypt key
DESCRIPTION
	crypt uses a key to encrypt characters coming from the standard input and
	prints the result to standard output. This half addition as a symmetric key
	encryption: what you encrypt with the key is decrypted with the key. It also
	means you can double encrypt by encrypting with one key, then reencrypting
	with a second key.
EXAMPLE
	C:\>echo hello, world | crypt pass | crypt pass
	hello, world