From owner-freebsd-questions Tue Jul 9 13:52:13 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BB1137B400 for ; Tue, 9 Jul 2002 13:52:10 -0700 (PDT) Received: from cactus.fi.uba.ar (cactus.fi.uba.ar [157.92.49.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C56F43E6A for ; Tue, 9 Jul 2002 13:52:08 -0700 (PDT) (envelope-from fgleiser@cactus.fi.uba.ar) Received: from localhost (localhost [127.0.0.1]) by cactus.fi.uba.ar (8.11.6/8.11.6) with ESMTP id g69KnKI41922; Tue, 9 Jul 2002 17:49:20 -0300 (ART) (envelope-from fgleiser@cactus.fi.uba.ar) Date: Tue, 9 Jul 2002 17:49:20 -0300 (ART) From: Fernando Gleiser X-X-Sender: To: Rafter Man Cc: Subject: Re: Encrypting files In-Reply-To: <20020709181143.20912.qmail@linuxmail.org> Message-ID: <20020709173810.J11873-100000@localhost> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 10 Jul 2002, Rafter Man wrote: > Hi FreeBSD'ers > > I need to en/decrypt some files and I want the strongest encryption > possible (and I mean the strongest/best). So what program would you > recommend? openssl is in the base system and supports a lot of encryption algorithms You can hack up a simple script around it to encrypt files. To encrypt a file: openssl enc -e -in -out To decrypt a file: openssl enc -d -in -out where can be des, 3des, blowfish, rc4 and others. try 'openssl enc -?' for a list of options and algorithms. You can try also gpg, it's in the ports Fer > > Best regards > Rafter > -- > Get your free email from www.linuxmail.org > > > Powered by Outblaze > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message