Searching aescipher.exe or similar command line tool with AES encryption
Searching aescipher.exe or similar command line tool with AES encryption
am 15.02.2007 12:39:55 von mmecky
I am searching for a command line (!) tool which en- and decrypts files and folders
with the well known AES algorithm. I should be able either to pass the password as parameter
resp. the program should ask the user for a password at the command line.
Can someone recommend me such a tool for WinXP ?
Again, it should not (only) be a GUI based encryption utility but a small, ressource friendly
command line based tool.
Marcus
Re: Searching aescipher.exe or similar command line tool with AESencryption
am 15.02.2007 12:54:09 von Ertugrul Soeylemez
mmecky@yahoo.com (Marcus Mackler) (07-02-15 11:39:55):
> I am searching for a command line (!) tool which en- and decrypts
> files and folders with the well known AES algorithm. I should be able
> either to pass the password as parameter resp. the program should ask
> the user for a password at the command line.
>
> Can someone recommend me such a tool for WinXP ?
>
> Again, it should not (only) be a GUI based encryption utility but a
> small, ressource friendly command line based tool.
Here is an excerpt from `eix -sS aes':
app-crypt/aes-crypt
Abstract: Command line program ('aes') to encrypt and decrypt data using the Rijndael algorithm (BSD)
Homepages: http://my.cubic.ch/users/timtas/aes/
app-crypt/aespipe
Abstract: Encrypts data from stdin to stdout (GPL-2)
Homepages: http://loop-aes.sourceforge.net
Those are Unix/Linux programs in their original form, but mostly there
is a Windows version out there, so have a look at their homepages. If
not, you can compile most of these tools with the help of Cygwin [1] or
your native compiler, or with Dev-C++ [2] if you don't have any.
Regards,
E.S.
References:
[1] http://cygwin.com/
[2] http://bloodshed.net/dev/devcpp.html
Re: Searching aescipher.exe or similar command line tool with AES encryption
am 15.02.2007 16:34:20 von Alan
On Feb 15, 6:39 am, mme...@yahoo.com (Marcus Mackler) wrote:
> I am searching for a command line (!) tool which en- and decrypts files and folders
> with the well known AES algorithm.
The Rijndael home page has a reference implementation and a list of
links to other implementations:
http://www.iaik.tu-graz.ac.at/research/krypto/AES/old/%7Erij men/rijndael/
Re: Searching aescipher.exe or similar command line tool with AES encryption
am 15.02.2007 19:44:52 von Volker Birk
In comp.security.misc Marcus Mackler wrote:
> I am searching for a command line (!) tool which en- and decrypts files and folders
> with the well known AES algorithm.
www.gnupg.org
HTH,
VB.
--
"Pornography is an abstract phenomenon. It cannot exist without a medium
to propagate it, and it has very little (if anything at all) to do with sex."
Tina Lorenz
Re: Searching aescipher.exe or similar command line tool with AESencryption
am 15.02.2007 20:32:30 von Ertugrul Soeylemez
Volker Birk (07-02-15 19:44:52):
> > I am searching for a command line (!) tool which en- and decrypts
> > files and folders with the well known AES algorithm.
>
> www.gnupg.org
Overkill in this case, and more effort necessary, as (at least in my
version) CAST5 is the default cipher.
Regards,
E.S.
Re: Searching aescipher.exe or similar command line tool with AES encryption
am 15.02.2007 21:00:43 von Peter Pearson
On 15 Feb 2007 11:39:55 GMT, Marcus Mackler wrote:
> I am searching for a command line (!) tool which en- and
> decrypts files and folders with the well known AES
> algorithm. I should be able either to pass the password as
> parameter resp. the program should ask the user for a
> password at the command line.
gpg --cipher-algo aes -c filename.ext
--
To email me, substitute nowhere->spamcop, invalid->net.
Re: Searching aescipher.exe or similar command line tool with AES encryption
am 16.02.2007 10:35:10 von Volker Birk
Ertugrul Soeylemez wrote:
> Volker Birk (07-02-15 19:44:52):
> > > I am searching for a command line (!) tool which en- and decrypts
> > > files and folders with the well known AES algorithm.
> > www.gnupg.org
> Overkill in this case, and more effort necessary, as (at least in my
> version) CAST5 is the default cipher.
gpg -c --cipher-algo aes
YMMV
VB.
--
"Pornography is an abstract phenomenon. It cannot exist without a medium
to propagate it, and it has very little (if anything at all) to do with sex."
Tina Lorenz