diff options
author | Andrew Haley <aph@redhat.com> | 2016-09-30 16:24:48 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2016-09-30 16:24:48 +0000 |
commit | 07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch) | |
tree | 3f22b3241c513ad168c8353805614ae1249410f4 /libjava/javax/crypto/KeyAgreement.h | |
parent | eae993948bae8b788c53772bcb9217c063716f93 (diff) | |
download | gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz |
Makefile.def: Remove libjava.
2016-09-30 Andrew Haley <aph@redhat.com>
* Makefile.def: Remove libjava.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
* configure.ac: Likewise.
* configure: Likewise.
* gcc/java: Remove.
* libjava: Likewise.
From-SVN: r240662
Diffstat (limited to 'libjava/javax/crypto/KeyAgreement.h')
-rw-r--r-- | libjava/javax/crypto/KeyAgreement.h | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/libjava/javax/crypto/KeyAgreement.h b/libjava/javax/crypto/KeyAgreement.h deleted file mode 100644 index 5f6b4e7617c..00000000000 --- a/libjava/javax/crypto/KeyAgreement.h +++ /dev/null @@ -1,67 +0,0 @@ - -// 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__ |