summaryrefslogtreecommitdiff
path: root/libjava/javax/crypto/KeyAgreement.h
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/javax/crypto/KeyAgreement.h')
-rw-r--r--libjava/javax/crypto/KeyAgreement.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/libjava/javax/crypto/KeyAgreement.h b/libjava/javax/crypto/KeyAgreement.h
new file mode 100644
index 000000000..5f6b4e761
--- /dev/null
+++ b/libjava/javax/crypto/KeyAgreement.h
@@ -0,0 +1,67 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __javax_crypto_KeyAgreement__
+#define __javax_crypto_KeyAgreement__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+ namespace java
+ {
+ namespace security
+ {
+ class Key;
+ class Provider;
+ class SecureRandom;
+ namespace spec
+ {
+ class AlgorithmParameterSpec;
+ }
+ }
+ }
+ namespace javax
+ {
+ namespace crypto
+ {
+ class KeyAgreement;
+ class KeyAgreementSpi;
+ class SecretKey;
+ }
+ }
+}
+
+class javax::crypto::KeyAgreement : public ::java::lang::Object
+{
+
+public: // actually protected
+ KeyAgreement(::javax::crypto::KeyAgreementSpi *, ::java::security::Provider *, ::java::lang::String *);
+public:
+ static ::javax::crypto::KeyAgreement * getInstance(::java::lang::String *);
+ static ::javax::crypto::KeyAgreement * getInstance(::java::lang::String *, ::java::lang::String *);
+ static ::javax::crypto::KeyAgreement * getInstance(::java::lang::String *, ::java::security::Provider *);
+ virtual ::java::security::Key * doPhase(::java::security::Key *, jboolean);
+ virtual JArray< jbyte > * generateSecret();
+ virtual jint generateSecret(JArray< jbyte > *, jint);
+ virtual ::javax::crypto::SecretKey * generateSecret(::java::lang::String *);
+ virtual ::java::lang::String * getAlgorithm();
+ virtual ::java::security::Provider * getProvider();
+ virtual void init(::java::security::Key *);
+ virtual void init(::java::security::Key *, ::java::security::SecureRandom *);
+ virtual void init(::java::security::Key *, ::java::security::spec::AlgorithmParameterSpec *);
+ virtual void init(::java::security::Key *, ::java::security::spec::AlgorithmParameterSpec *, ::java::security::SecureRandom *);
+private:
+ static ::java::lang::String * SERVICE;
+ ::javax::crypto::KeyAgreementSpi * __attribute__((aligned(__alignof__( ::java::lang::Object)))) kaSpi;
+ ::java::security::Provider * provider;
+ ::java::lang::String * algorithm;
+ jboolean virgin;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __javax_crypto_KeyAgreement__