OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / javax / net / ssl / provider / JessieRSAPrivateKey.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __gnu_javax_net_ssl_provider_JessieRSAPrivateKey__
5 #define __gnu_javax_net_ssl_provider_JessieRSAPrivateKey__
6
7 #pragma interface
8
9 #include <java/lang/Object.h>
10 #include <gcj/array.h>
11
12 extern "Java"
13 {
14   namespace gnu
15   {
16     namespace javax
17     {
18       namespace net
19       {
20         namespace ssl
21         {
22           namespace provider
23           {
24               class JessieRSAPrivateKey;
25           }
26         }
27       }
28     }
29   }
30   namespace java
31   {
32     namespace math
33     {
34         class BigInteger;
35     }
36   }
37 }
38
39 class gnu::javax::net::ssl::provider::JessieRSAPrivateKey : public ::java::lang::Object
40 {
41
42 public: // actually package-private
43   JessieRSAPrivateKey(::java::math::BigInteger *, ::java::math::BigInteger *);
44 public:
45   virtual ::java::lang::String * getAlgorithm();
46   virtual ::java::lang::String * getFormat();
47   virtual JArray< jbyte > * getEncoded();
48   virtual ::java::math::BigInteger * getModulus();
49   virtual ::java::math::BigInteger * getPrivateExponent();
50   virtual ::java::lang::String * toString();
51 private:
52   ::java::math::BigInteger * __attribute__((aligned(__alignof__( ::java::lang::Object)))) modulus;
53   ::java::math::BigInteger * exponent;
54 public:
55   static ::java::lang::Class class$;
56 };
57
58 #endif // __gnu_javax_net_ssl_provider_JessieRSAPrivateKey__