OSDN Git Service

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