Re: Rijndael

2005-02-24 Thread Manuel Sánchez Cuenca
gram. The java program is the following: = KeyGenerator key_gen = KeyGenerator.getInstance("Rijndael"); SecretKey aes_key = (SecretKey)key_gen.generateKey(); Cipher aes = Cipher.getInstance("Rijn

Re: Rijndael

2005-02-23 Thread Lawrence Bowie
following: = KeyGenerator key_gen = KeyGenerator.getInstance("Rijndael"); SecretKey aes_key = (SecretKey)key_gen.generateKey(); Cipher aes = Cipher.getInstance("Rijndael/CBC/PKCS5Padding", "IAIK"); aes.init(Cipher.ENCRYPT_MODE, aes_key); byte[] crypted =

Re: Rijndael

2005-02-23 Thread Thomas J. Hruska
ator key_gen = KeyGenerator.getInstance("Rijndael"); > SecretKey aes_key = (SecretKey)key_gen.generateKey(); > Cipher aes = Cipher.getInstance("Rijndael/CBC/PKCS5Padding", "IAIK"); > aes.init(Cipher.ENCRYPT_MODE, aes_key); > byte[] crypted =

Rijndael

2005-02-23 Thread Manuel Sánchez Cuenca
Hello all, I have to write a C program which decrypts some data encrypted by a java program. The java program is the following: = KeyGenerator key_gen = KeyGenerator.getInstance("Rijndael"); SecretKey aes_key =

Re: Rijndael decryption

2005-02-10 Thread Dr. Stephen Henson
On Thu, Feb 10, 2005, Manuel Sánchez Cuenca wrote: > Hello all, I have written the following code in java using the IAIK library: > === > byte[] byte_key = ; > SecretKey aes_key = new SecretKey(byte_key, >

Rijndael decryption

2005-02-10 Thread Manuel Sánchez Cuenca
Hello all, I have written the following code in java using the IAIK library: === byte[] byte_key = ; SecretKey aes_key = new SecretKey(byte_key, "Rijndael/ECB/PKCS5Padding"); Cipher rijndael = Cipher.getInstance

RE: Rijndael algorithm

2005-02-10 Thread Oscar Rodríguez
e.NCTU.edu.tw&rnum=6 -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] nombre de Manuel Sánchez Cuenca Enviado el: jueves, 10 de febrero de 2005 12:08 Para: openssl-users@openssl.org Asunto: Re: Rijndael algorithm Eduardo Pérez escribió: But I want to use the openssl lib

Re: Rijndael algorithm

2005-02-10 Thread Dunceor .
I suggest you read the documentation for openssl and learn which functions that exist and which ones you need to call. Here is a great beginners book: http://www.amazon.com/exec/obidos/tg/detail/-/059600270X/qid=1108034419/sr=8-1/ref=sr_8_xs_ap_i1_xgl14/002-8185538-7753620?v=glance&s=books&n=50784

Re: Rijndael algorithm

2005-02-10 Thread Manuel Sánchez Cuenca
Eduardo Pérez escribió: On 2005-02-10 08:39:24 UTC, Manuel Sánchez Cuenca wrote: can anybody tell me if the rijndael algorithm is supported in openssl? and in this case can anybody send me some examples? Yes, rijndael (aka aes) is supported. Just type: openssl ciphers -v and you'l

Re: Rijndael algorithm

2005-02-10 Thread Eduardo Pérez
On 2005-02-10 08:39:24 UTC, Manuel Sánchez Cuenca wrote: > can anybody tell me if the rijndael algorithm is supported in openssl? > and in this case can anybody send me some examples? Yes, rijndael (aka aes) is supported. Just type: openssl ciphers -v and you'll see all ciphers Y

Re: rijndael algorithm

2005-02-10 Thread Dunceor .
After Rijndael algortihm was accepted as the new standard it was officially named AES - Advanced Encryption Standard (i think it is) and you can use it in OpenSSL. Check this list for ciphers that you can use: http://www.openssl.org/docs/apps/ciphers.html Enjoy. On Thu, 10 Feb 2005 11:39:22

rijndael algorithm

2005-02-10 Thread Manuel Sánchez Cuenca
Hello all, can anybody tell me if the rijndael algorithm is supported by openssl? and in this case can anybody send me some examples? Thanks in advance. -- === Manuel Sanchez Cuenca Dept. Ingenieria de la Informacion y las Comunicaciones

Rijndael algorithm

2005-02-10 Thread Manuel Sánchez Cuenca
Hello all, can anybody tell me if the rijndael algorithm is supported in openssl? and in this case can anybody send me some examples? Thanks in advance. -- === Manuel Sanchez Cuenca Dept. Ingenieria de la Informacion y las Comunicaciones

AES - Rijndael

2002-04-02 Thread Christian Gabriel Charette
Hello anybody! Im start testing OpenSSL and Id like to know if it supports AES (Rijndael) encryption and how to implement it. Beside, id like to hear your opinions about stress test and other benchmarks like this. Thanks in advance, and sorry for my english! Christian. Hello anybody! Im

Re: AES - Rijndael

2000-12-12 Thread Robert Sandilands
Another thing you can do it to go to www.rijndael.com. It contains a lot of information/links about rijndael. Robert Sandilands Johannes Baagoe wrote: > > Robert Sandilands wrote: > > > There seems to be two ways... The newest CVS contains updates > > for Rijndael and

Re: AES - Rijndael

2000-12-12 Thread Johannes Baagoe
Robert Sandilands wrote: > There seems to be two ways... The newest CVS contains updates > for Rijndael and I posted patches for 0.9.6 for Rijndael. So > go either to the CVS repository for the newest and bestest or > look in the archives for my patch. OK, thanks a lot. Howev

Re: AES - Rijndael

2000-12-12 Thread Robert Sandilands
There seems to be two ways... The newest CVS contains updates for Rijndael and I posted patches for 0.9.6 for Rijndael. So go either to the CVS repository for the newest and bestest or look in the archives for my patch. Robert Sandilands Johannes Baagoe wrote: > > Hello, > > A

AES - Rijndael

2000-12-12 Thread Johannes Baagoe
Hello, Are there any plans, or even a schedule, for a new release of OpenSSL with Rijndael (AES) support ? -- Johannes Baagoe __ OpenSSL Project http://www.openssl.org User Support Mailing List

Rijndael and OpenSSL

2000-10-09 Thread Robert Sandilands
Has anybody started incorporating the AES winner Rijndael into OpenSSL? Is there any plans to do it? If somebody would like it in there and nobody else is busy, I wouldn't mind trying... Robert Sandilands __ OpenSSL Pr