SecretKey.h 708 B

1234567891011121314151617181920212223242526272829303132333435
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __javax_crypto_SecretKey__
  3. #define __javax_crypto_SecretKey__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. #include <gcj/array.h>
  7. extern "Java"
  8. {
  9. namespace javax
  10. {
  11. namespace crypto
  12. {
  13. class SecretKey;
  14. }
  15. }
  16. }
  17. class javax::crypto::SecretKey : public ::java::lang::Object
  18. {
  19. public:
  20. virtual ::java::lang::String * getAlgorithm() = 0;
  21. virtual ::java::lang::String * getFormat() = 0;
  22. virtual JArray< jbyte > * getEncoded() = 0;
  23. static const jlong serialVersionUID = -4795878709595146952LL;
  24. static ::java::lang::Class class$;
  25. } __attribute__ ((java_interface));
  26. #endif // __javax_crypto_SecretKey__