KeyPair.h 880 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_security_KeyPair__
  3. #define __java_security_KeyPair__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace security
  11. {
  12. class KeyPair;
  13. class PrivateKey;
  14. class PublicKey;
  15. }
  16. }
  17. }
  18. class java::security::KeyPair : public ::java::lang::Object
  19. {
  20. public:
  21. KeyPair(::java::security::PublicKey *, ::java::security::PrivateKey *);
  22. ::java::security::PublicKey * getPublic();
  23. ::java::security::PrivateKey * getPrivate();
  24. private:
  25. static const jlong serialVersionUID = -7565189502268009837LL;
  26. ::java::security::PublicKey * __attribute__((aligned(__alignof__( ::java::lang::Object)))) publicKey;
  27. ::java::security::PrivateKey * privateKey;
  28. public:
  29. static ::java::lang::Class class$;
  30. };
  31. #endif // __java_security_KeyPair__