GnuPBEKey.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_javax_crypto_key_GnuPBEKey__
  3. #define __gnu_javax_crypto_key_GnuPBEKey__
  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. class GnuPBEKey;
  18. }
  19. }
  20. }
  21. }
  22. namespace javax
  23. {
  24. namespace crypto
  25. {
  26. namespace spec
  27. {
  28. class PBEKeySpec;
  29. }
  30. }
  31. }
  32. }
  33. class gnu::javax::crypto::key::GnuPBEKey : public ::java::lang::Object
  34. {
  35. public:
  36. GnuPBEKey(::javax::crypto::spec::PBEKeySpec *);
  37. GnuPBEKey(JArray< jchar > *, JArray< jbyte > *, jint);
  38. virtual jint getIterationCount();
  39. virtual JArray< jchar > * getPassword();
  40. virtual JArray< jbyte > * getSalt();
  41. virtual ::java::lang::String * getAlgorithm();
  42. virtual ::java::lang::String * getFormat();
  43. virtual JArray< jbyte > * getEncoded();
  44. private:
  45. ::javax::crypto::spec::PBEKeySpec * __attribute__((aligned(__alignof__( ::java::lang::Object)))) spec;
  46. public:
  47. static ::java::lang::Class class$;
  48. };
  49. #endif // __gnu_javax_crypto_key_GnuPBEKey__