[an error occurred while processing this directive]

  • crypt example
    By : anonymous ( Fri Feb 11 14:54:12 2005 )

    The crypt example below you used should be modified with a key or else you can not decrypt it.
    --> encrypt filename 1 and output to 1.crypt file
    crypt < 1 > 1.crypt ; rm 1
    --> decrypt filename 1.crypt and stdout to screen
    crypt < 1.crypt

    Return to article...[an error occurred while processing this directive]