Note: this implementation is based on information prior to final NIST publication.
232425262728293031
{ super(new BlockCipherProvider() { public BlockCipher get() { return new RijndaelEngine(); } }); }
948949950951952953954
static public class Rijndael extends JCEBlockCipher { public Rijndael() { super(new RijndaelEngine()); }
972973974975976977978
921922923924925926927