OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / javax / crypto / spec / DHPrivateKeySpec.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __javax_crypto_spec_DHPrivateKeySpec__
5 #define __javax_crypto_spec_DHPrivateKeySpec__
6
7 #pragma interface
8
9 #include <java/lang/Object.h>
10 extern "Java"
11 {
12   namespace java
13   {
14     namespace math
15     {
16         class BigInteger;
17     }
18   }
19   namespace javax
20   {
21     namespace crypto
22     {
23       namespace spec
24       {
25           class DHPrivateKeySpec;
26       }
27     }
28   }
29 }
30
31 class javax::crypto::spec::DHPrivateKeySpec : public ::java::lang::Object
32 {
33
34 public:
35   DHPrivateKeySpec(::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *);
36   virtual ::java::math::BigInteger * getG();
37   virtual ::java::math::BigInteger * getP();
38   virtual ::java::math::BigInteger * getX();
39 private:
40   ::java::math::BigInteger * __attribute__((aligned(__alignof__( ::java::lang::Object)))) g;
41   ::java::math::BigInteger * p;
42   ::java::math::BigInteger * x;
43 public:
44   static ::java::lang::Class class$;
45 };
46
47 #endif // __javax_crypto_spec_DHPrivateKeySpec__