summaryrefslogtreecommitdiff
path: root/libjava/gnu/javax/crypto/cipher/NullCipher.h
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/gnu/javax/crypto/cipher/NullCipher.h')
-rw-r--r--libjava/gnu/javax/crypto/cipher/NullCipher.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/libjava/gnu/javax/crypto/cipher/NullCipher.h b/libjava/gnu/javax/crypto/cipher/NullCipher.h
new file mode 100644
index 000000000..5199488c5
--- /dev/null
+++ b/libjava/gnu/javax/crypto/cipher/NullCipher.h
@@ -0,0 +1,44 @@
+
+// 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__