SRPPublicKey.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_javax_crypto_key_srp6_SRPPublicKey__
  3. #define __gnu_javax_crypto_key_srp6_SRPPublicKey__
  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 SRPPublicKey;
  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::SRPPublicKey : public ::gnu::javax::crypto::key::srp6::SRPKey
  34. {
  35. public:
  36. SRPPublicKey(::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *);
  37. public: // actually package-private
  38. SRPPublicKey(JArray< ::java::math::BigInteger * > *);
  39. public:
  40. static ::gnu::javax::crypto::key::srp6::SRPPublicKey * valueOf(JArray< jbyte > *);
  41. virtual ::java::math::BigInteger * getY();
  42. virtual JArray< jbyte > * getEncoded(jint);
  43. virtual jboolean equals(::java::lang::Object *);
  44. private:
  45. ::java::math::BigInteger * __attribute__((aligned(__alignof__( ::gnu::javax::crypto::key::srp6::SRPKey)))) Y;
  46. public:
  47. static ::java::lang::Class class$;
  48. };
  49. #endif // __gnu_javax_crypto_key_srp6_SRPPublicKey__