URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [gnu/] [javax/] [crypto/] [cipher/] [NullCipher.h] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- #ifndef __gnu_javax_crypto_cipher_NullCipher__ #define __gnu_javax_crypto_cipher_NullCipher__ #pragma interface #include <gnu/javax/crypto/cipher/BaseCipher.h> #include <gcj/array.h> extern "Java" { namespace gnu { namespace javax { namespace crypto { namespace cipher { class NullCipher; } } } } } class gnu::javax::crypto::cipher::NullCipher : public ::gnu::javax::crypto::cipher::BaseCipher { public: NullCipher(); ::java::lang::Object * clone(); ::java::util::Iterator * blockSizes(); ::java::util::Iterator * keySizes(); ::java::lang::Object * makeKey(JArray< jbyte > *, jint); void encrypt(JArray< jbyte > *, jint, JArray< jbyte > *, jint, ::java::lang::Object *, jint); void decrypt(JArray< jbyte > *, jint, JArray< jbyte > *, jint, ::java::lang::Object *, jint); jboolean selfTest(); static ::java::lang::Class class$; }; #endif // __gnu_javax_crypto_cipher_NullCipher__
Go to most recent revision | Compare with Previous | Blame | View Log