SRPPrivateKey.h 1.5 KB

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