DiffieHellmanKeyAgreement.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_javax_crypto_key_dh_DiffieHellmanKeyAgreement__
  3. #define __gnu_javax_crypto_key_dh_DiffieHellmanKeyAgreement__
  4. #pragma interface
  5. #include <gnu/javax/crypto/key/BaseKeyAgreementParty.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 dh
  18. {
  19. class DiffieHellmanKeyAgreement;
  20. }
  21. }
  22. }
  23. }
  24. }
  25. namespace java
  26. {
  27. namespace math
  28. {
  29. class BigInteger;
  30. }
  31. }
  32. namespace javax
  33. {
  34. namespace crypto
  35. {
  36. namespace interfaces
  37. {
  38. class DHPrivateKey;
  39. }
  40. }
  41. }
  42. }
  43. class gnu::javax::crypto::key::dh::DiffieHellmanKeyAgreement : public ::gnu::javax::crypto::key::BaseKeyAgreementParty
  44. {
  45. public: // actually protected
  46. DiffieHellmanKeyAgreement();
  47. virtual JArray< jbyte > * engineSharedSecret();
  48. virtual void engineReset();
  49. public:
  50. static ::java::lang::String * SOURCE_OF_RANDOMNESS;
  51. static ::java::lang::String * KA_DIFFIE_HELLMAN_OWNER_PRIVATE_KEY;
  52. public: // actually protected
  53. ::javax::crypto::interfaces::DHPrivateKey * __attribute__((aligned(__alignof__( ::gnu::javax::crypto::key::BaseKeyAgreementParty)))) ownerKey;
  54. ::java::math::BigInteger * ZZ;
  55. public:
  56. static ::java::lang::Class class$;
  57. };
  58. #endif // __gnu_javax_crypto_key_dh_DiffieHellmanKeyAgreement__