DHKeyPairRawCodec.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_javax_crypto_key_dh_DHKeyPairRawCodec__
  3. #define __gnu_javax_crypto_key_dh_DHKeyPairRawCodec__
  4. #pragma interface
  5. #include <java/lang/Object.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 DHKeyPairRawCodec;
  20. }
  21. }
  22. }
  23. }
  24. }
  25. namespace java
  26. {
  27. namespace security
  28. {
  29. class PrivateKey;
  30. class PublicKey;
  31. }
  32. }
  33. }
  34. class gnu::javax::crypto::key::dh::DHKeyPairRawCodec : public ::java::lang::Object
  35. {
  36. public:
  37. DHKeyPairRawCodec();
  38. virtual jint getFormatID();
  39. virtual JArray< jbyte > * encodePublicKey(::java::security::PublicKey *);
  40. virtual ::java::security::PublicKey * decodePublicKey(JArray< jbyte > *);
  41. virtual JArray< jbyte > * encodePrivateKey(::java::security::PrivateKey *);
  42. virtual ::java::security::PrivateKey * decodePrivateKey(JArray< jbyte > *);
  43. static ::java::lang::Class class$;
  44. };
  45. #endif // __gnu_javax_crypto_key_dh_DHKeyPairRawCodec__