EncodedKeySpec.h 791 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_security_spec_EncodedKeySpec__
  3. #define __java_security_spec_EncodedKeySpec__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. #include <gcj/array.h>
  7. extern "Java"
  8. {
  9. namespace java
  10. {
  11. namespace security
  12. {
  13. namespace spec
  14. {
  15. class EncodedKeySpec;
  16. }
  17. }
  18. }
  19. }
  20. class java::security::spec::EncodedKeySpec : public ::java::lang::Object
  21. {
  22. public:
  23. EncodedKeySpec(JArray< jbyte > *);
  24. virtual JArray< jbyte > * getEncoded();
  25. virtual ::java::lang::String * getFormat() = 0;
  26. private:
  27. JArray< jbyte > * __attribute__((aligned(__alignof__( ::java::lang::Object)))) encodedKey;
  28. public:
  29. static ::java::lang::Class class$;
  30. };
  31. #endif // __java_security_spec_EncodedKeySpec__