aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/security/interfaces
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2016-09-30 16:24:48 +0000
committerAndrew Haley <aph@gcc.gnu.org>2016-09-30 16:24:48 +0000
commit07b78716af6a9d7c9fd1e94d9baf94a52c873947 (patch)
tree3f22b3241c513ad168c8353805614ae1249410f4 /libjava/java/security/interfaces
parenteae993948bae8b788c53772bcb9217c063716f93 (diff)
downloadgcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.zip
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.gz
gcc-07b78716af6a9d7c9fd1e94d9baf94a52c873947.tar.bz2
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/java/security/interfaces')
-rw-r--r--libjava/java/security/interfaces/DSAKey.h33
-rw-r--r--libjava/java/security/interfaces/DSAKeyPairGenerator.h35
-rw-r--r--libjava/java/security/interfaces/DSAParams.h38
-rw-r--r--libjava/java/security/interfaces/DSAPrivateKey.h44
-rw-r--r--libjava/java/security/interfaces/DSAPublicKey.h44
-rw-r--r--libjava/java/security/interfaces/RSAKey.h36
-rw-r--r--libjava/java/security/interfaces/RSAMultiPrimePrivateCrtKey.h54
-rw-r--r--libjava/java/security/interfaces/RSAPrivateCrtKey.h49
-rw-r--r--libjava/java/security/interfaces/RSAPrivateKey.h43
-rw-r--r--libjava/java/security/interfaces/RSAPublicKey.h43
10 files changed, 0 insertions, 419 deletions
diff --git a/libjava/java/security/interfaces/DSAKey.h b/libjava/java/security/interfaces/DSAKey.h
deleted file mode 100644
index ee58f37..0000000
--- a/libjava/java/security/interfaces/DSAKey.h
+++ /dev/null
@@ -1,33 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_DSAKey__
-#define __java_security_interfaces_DSAKey__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-extern "Java"
-{
- namespace java
- {
- namespace security
- {
- namespace interfaces
- {
- class DSAKey;
- class DSAParams;
- }
- }
- }
-}
-
-class java::security::interfaces::DSAKey : public ::java::lang::Object
-{
-
-public:
- virtual ::java::security::interfaces::DSAParams * getParams() = 0;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_DSAKey__
diff --git a/libjava/java/security/interfaces/DSAKeyPairGenerator.h b/libjava/java/security/interfaces/DSAKeyPairGenerator.h
deleted file mode 100644
index 424348c..0000000
--- a/libjava/java/security/interfaces/DSAKeyPairGenerator.h
+++ /dev/null
@@ -1,35 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_DSAKeyPairGenerator__
-#define __java_security_interfaces_DSAKeyPairGenerator__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-extern "Java"
-{
- namespace java
- {
- namespace security
- {
- class SecureRandom;
- namespace interfaces
- {
- class DSAKeyPairGenerator;
- class DSAParams;
- }
- }
- }
-}
-
-class java::security::interfaces::DSAKeyPairGenerator : public ::java::lang::Object
-{
-
-public:
- virtual void initialize(::java::security::interfaces::DSAParams *, ::java::security::SecureRandom *) = 0;
- virtual void initialize(jint, jboolean, ::java::security::SecureRandom *) = 0;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_DSAKeyPairGenerator__
diff --git a/libjava/java/security/interfaces/DSAParams.h b/libjava/java/security/interfaces/DSAParams.h
deleted file mode 100644
index e6963fb..0000000
--- a/libjava/java/security/interfaces/DSAParams.h
+++ /dev/null
@@ -1,38 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_DSAParams__
-#define __java_security_interfaces_DSAParams__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-extern "Java"
-{
- namespace java
- {
- namespace math
- {
- class BigInteger;
- }
- namespace security
- {
- namespace interfaces
- {
- class DSAParams;
- }
- }
- }
-}
-
-class java::security::interfaces::DSAParams : public ::java::lang::Object
-{
-
-public:
- virtual ::java::math::BigInteger * getG() = 0;
- virtual ::java::math::BigInteger * getP() = 0;
- virtual ::java::math::BigInteger * getQ() = 0;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_DSAParams__
diff --git a/libjava/java/security/interfaces/DSAPrivateKey.h b/libjava/java/security/interfaces/DSAPrivateKey.h
deleted file mode 100644
index e1fb8e8..0000000
--- a/libjava/java/security/interfaces/DSAPrivateKey.h
+++ /dev/null
@@ -1,44 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_DSAPrivateKey__
-#define __java_security_interfaces_DSAPrivateKey__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-#include <gcj/array.h>
-
-extern "Java"
-{
- namespace java
- {
- namespace math
- {
- class BigInteger;
- }
- namespace security
- {
- namespace interfaces
- {
- class DSAParams;
- class DSAPrivateKey;
- }
- }
- }
-}
-
-class java::security::interfaces::DSAPrivateKey : public ::java::lang::Object
-{
-
-public:
- virtual ::java::math::BigInteger * getX() = 0;
- virtual ::java::security::interfaces::DSAParams * getParams() = 0;
- virtual ::java::lang::String * getAlgorithm() = 0;
- virtual ::java::lang::String * getFormat() = 0;
- virtual JArray< jbyte > * getEncoded() = 0;
- static const jlong serialVersionUID = 7776497482533790279LL;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_DSAPrivateKey__
diff --git a/libjava/java/security/interfaces/DSAPublicKey.h b/libjava/java/security/interfaces/DSAPublicKey.h
deleted file mode 100644
index 0791610..0000000
--- a/libjava/java/security/interfaces/DSAPublicKey.h
+++ /dev/null
@@ -1,44 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_DSAPublicKey__
-#define __java_security_interfaces_DSAPublicKey__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-#include <gcj/array.h>
-
-extern "Java"
-{
- namespace java
- {
- namespace math
- {
- class BigInteger;
- }
- namespace security
- {
- namespace interfaces
- {
- class DSAParams;
- class DSAPublicKey;
- }
- }
- }
-}
-
-class java::security::interfaces::DSAPublicKey : public ::java::lang::Object
-{
-
-public:
- virtual ::java::math::BigInteger * getY() = 0;
- virtual ::java::security::interfaces::DSAParams * getParams() = 0;
- virtual ::java::lang::String * getAlgorithm() = 0;
- virtual ::java::lang::String * getFormat() = 0;
- virtual JArray< jbyte > * getEncoded() = 0;
- static const jlong serialVersionUID = 1234526332779022332LL;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_DSAPublicKey__
diff --git a/libjava/java/security/interfaces/RSAKey.h b/libjava/java/security/interfaces/RSAKey.h
deleted file mode 100644
index 76985bd..0000000
--- a/libjava/java/security/interfaces/RSAKey.h
+++ /dev/null
@@ -1,36 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_RSAKey__
-#define __java_security_interfaces_RSAKey__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-extern "Java"
-{
- namespace java
- {
- namespace math
- {
- class BigInteger;
- }
- namespace security
- {
- namespace interfaces
- {
- class RSAKey;
- }
- }
- }
-}
-
-class java::security::interfaces::RSAKey : public ::java::lang::Object
-{
-
-public:
- virtual ::java::math::BigInteger * getModulus() = 0;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_RSAKey__
diff --git a/libjava/java/security/interfaces/RSAMultiPrimePrivateCrtKey.h b/libjava/java/security/interfaces/RSAMultiPrimePrivateCrtKey.h
deleted file mode 100644
index 3e4ff33..0000000
--- a/libjava/java/security/interfaces/RSAMultiPrimePrivateCrtKey.h
+++ /dev/null
@@ -1,54 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_RSAMultiPrimePrivateCrtKey__
-#define __java_security_interfaces_RSAMultiPrimePrivateCrtKey__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-#include <gcj/array.h>
-
-extern "Java"
-{
- namespace java
- {
- namespace math
- {
- class BigInteger;
- }
- namespace security
- {
- namespace interfaces
- {
- class RSAMultiPrimePrivateCrtKey;
- }
- namespace spec
- {
- class RSAOtherPrimeInfo;
- }
- }
- }
-}
-
-class java::security::interfaces::RSAMultiPrimePrivateCrtKey : public ::java::lang::Object
-{
-
-public:
- virtual ::java::math::BigInteger * getPublicExponent() = 0;
- virtual ::java::math::BigInteger * getPrimeP() = 0;
- virtual ::java::math::BigInteger * getPrimeQ() = 0;
- virtual ::java::math::BigInteger * getPrimeExponentP() = 0;
- virtual ::java::math::BigInteger * getPrimeExponentQ() = 0;
- virtual ::java::math::BigInteger * getCrtCoefficient() = 0;
- virtual JArray< ::java::security::spec::RSAOtherPrimeInfo * > * getOtherPrimeInfo() = 0;
- virtual ::java::math::BigInteger * getPrivateExponent() = 0;
- virtual ::java::lang::String * getAlgorithm() = 0;
- virtual ::java::lang::String * getFormat() = 0;
- virtual JArray< jbyte > * getEncoded() = 0;
- virtual ::java::math::BigInteger * getModulus() = 0;
- static const jlong serialVersionUID = 618058533534628008LL;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_RSAMultiPrimePrivateCrtKey__
diff --git a/libjava/java/security/interfaces/RSAPrivateCrtKey.h b/libjava/java/security/interfaces/RSAPrivateCrtKey.h
deleted file mode 100644
index 7c6943d..0000000
--- a/libjava/java/security/interfaces/RSAPrivateCrtKey.h
+++ /dev/null
@@ -1,49 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_RSAPrivateCrtKey__
-#define __java_security_interfaces_RSAPrivateCrtKey__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-#include <gcj/array.h>
-
-extern "Java"
-{
- namespace java
- {
- namespace math
- {
- class BigInteger;
- }
- namespace security
- {
- namespace interfaces
- {
- class RSAPrivateCrtKey;
- }
- }
- }
-}
-
-class java::security::interfaces::RSAPrivateCrtKey : public ::java::lang::Object
-{
-
-public:
- virtual ::java::math::BigInteger * getPublicExponent() = 0;
- virtual ::java::math::BigInteger * getPrimeP() = 0;
- virtual ::java::math::BigInteger * getPrimeQ() = 0;
- virtual ::java::math::BigInteger * getPrimeExponentP() = 0;
- virtual ::java::math::BigInteger * getPrimeExponentQ() = 0;
- virtual ::java::math::BigInteger * getCrtCoefficient() = 0;
- virtual ::java::math::BigInteger * getPrivateExponent() = 0;
- virtual ::java::lang::String * getAlgorithm() = 0;
- virtual ::java::lang::String * getFormat() = 0;
- virtual JArray< jbyte > * getEncoded() = 0;
- virtual ::java::math::BigInteger * getModulus() = 0;
- static const jlong serialVersionUID = -5682214253527700368LL;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_RSAPrivateCrtKey__
diff --git a/libjava/java/security/interfaces/RSAPrivateKey.h b/libjava/java/security/interfaces/RSAPrivateKey.h
deleted file mode 100644
index b1e6139..0000000
--- a/libjava/java/security/interfaces/RSAPrivateKey.h
+++ /dev/null
@@ -1,43 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_RSAPrivateKey__
-#define __java_security_interfaces_RSAPrivateKey__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-#include <gcj/array.h>
-
-extern "Java"
-{
- namespace java
- {
- namespace math
- {
- class BigInteger;
- }
- namespace security
- {
- namespace interfaces
- {
- class RSAPrivateKey;
- }
- }
- }
-}
-
-class java::security::interfaces::RSAPrivateKey : public ::java::lang::Object
-{
-
-public:
- virtual ::java::math::BigInteger * getPrivateExponent() = 0;
- virtual ::java::lang::String * getAlgorithm() = 0;
- virtual ::java::lang::String * getFormat() = 0;
- virtual JArray< jbyte > * getEncoded() = 0;
- virtual ::java::math::BigInteger * getModulus() = 0;
- static const jlong serialVersionUID = 5187144804936595022LL;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_RSAPrivateKey__
diff --git a/libjava/java/security/interfaces/RSAPublicKey.h b/libjava/java/security/interfaces/RSAPublicKey.h
deleted file mode 100644
index d2cd7e7..0000000
--- a/libjava/java/security/interfaces/RSAPublicKey.h
+++ /dev/null
@@ -1,43 +0,0 @@
-
-// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
-
-#ifndef __java_security_interfaces_RSAPublicKey__
-#define __java_security_interfaces_RSAPublicKey__
-
-#pragma interface
-
-#include <java/lang/Object.h>
-#include <gcj/array.h>
-
-extern "Java"
-{
- namespace java
- {
- namespace math
- {
- class BigInteger;
- }
- namespace security
- {
- namespace interfaces
- {
- class RSAPublicKey;
- }
- }
- }
-}
-
-class java::security::interfaces::RSAPublicKey : public ::java::lang::Object
-{
-
-public:
- virtual ::java::math::BigInteger * getPublicExponent() = 0;
- virtual ::java::lang::String * getAlgorithm() = 0;
- virtual ::java::lang::String * getFormat() = 0;
- virtual JArray< jbyte > * getEncoded() = 0;
- virtual ::java::math::BigInteger * getModulus() = 0;
- static const jlong serialVersionUID = -8727434096241101194LL;
- static ::java::lang::Class class$;
-} __attribute__ ((java_interface));
-
-#endif // __java_security_interfaces_RSAPublicKey__