AES-Rijndael  
Author Message
Roedy Green





PostPosted: 2004-7-22 9:49:00 Top

java-programmer, AES-Rijndael I am doing an entry in the Java glossary on AES aka
Rijndael symmetric cipher.

I wonder if anyone knows of opensource Java implementations.

see http://mindprod.com/jgloss/aes.html

for what I have discovered so far.


--
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
 
Chris





PostPosted: 2004-7-23 3:31:00 Top

java-programmer >> AES-Rijndael -----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Roedy Green wrote:

> I am doing an entry in the Java glossary on AES aka
> Rijndael symmetric cipher.
>
> I wonder if anyone knows of opensource Java implementations.
>
> see http://mindprod.com/jgloss/aes.html
>
> for what I have discovered so far.
>
>

Hi,
www.bouncycastle.org's BouncyCastle crypto provider is open-source and
has AES/Rijndael in both its JCE provider and its lightweight API.

Chris
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFBABYQnwjA8LryK2IRAh6MAKCj+Eq7XrUKJGJtsEjv5tcifk7C7ACeKDBq
jRJGScqT1jNtQG941yqA52M=
=9Yle
-----END PGP SIGNATURE-----
 
Roedy Green





PostPosted: 2004-7-23 6:46:00 Top

java-programmer >> AES-Rijndael On Thu, 22 Jul 2004 19:31:18 GMT, Chris <email***@***.com> wrote
or quoted :

>www.bouncycastle.org's BouncyCastle crypto provider is open-source and
>has AES/Rijndael in both its JCE provider and its lightweight API.

For my personal use, I want something tiny that can be tacked onto a
Applet jar.
--
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
 
 
Michael Amling





PostPosted: 2004-7-23 10:23:00 Top

java-programmer >> AES-Rijndael Roedy Green wrote:
> On Thu, 22 Jul 2004 19:31:18 GMT, Chris <email***@***.com> wrote
> or quoted :
>
>
>>www.bouncycastle.org's BouncyCastle crypto provider is open-source and
>>has AES/Rijndael in both its JCE provider and its lightweight API.
>
>
> For my personal use, I want something tiny that can be tacked onto a
> Applet jar.

Is the bouncycastle lightweight API too heavy?

--Mike Amling
 
 
Roedy Green





PostPosted: 2004-7-23 11:50:00 Top

java-programmer >> AES-Rijndael On Fri, 23 Jul 2004 02:22:32 GMT, Michael Amling <email***@***.com>
wrote or quoted :

> Is the bouncycastle lightweight API too heavy?
It has an amazing amount in it. I don't know if it is designed to be
taken apart so you just include the parts you use.

--
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
 
 
Bjoern





PostPosted: 2004-12-11 0:25:00 Top

java-programmer >> AES-Rijndael Roedy Green wrote:
> On Fri, 23 Jul 2004 02:22:32 GMT, Michael Amling <email***@***.com>
> wrote or quoted :
>
>
>> Is the bouncycastle lightweight API too heavy?
>
> It has an amazing amount in it. I don't know if it is designed to be
> taken apart so you just include the parts you use.

It certainly is, as it includes all kinds of encryption algorithms. I
use it for a mobile phone application and have an obfuscator remove all
the unnecessary classes.