ModeFactory.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_javax_crypto_mode_ModeFactory__
  3. #define __gnu_javax_crypto_mode_ModeFactory__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace gnu
  9. {
  10. namespace javax
  11. {
  12. namespace crypto
  13. {
  14. namespace cipher
  15. {
  16. class IBlockCipher;
  17. }
  18. namespace mode
  19. {
  20. class IMode;
  21. class ModeFactory;
  22. }
  23. }
  24. }
  25. }
  26. }
  27. class gnu::javax::crypto::mode::ModeFactory : public ::java::lang::Object
  28. {
  29. ModeFactory();
  30. public:
  31. static ::gnu::javax::crypto::mode::IMode * getInstance(::java::lang::String *, ::java::lang::String *, jint);
  32. static ::gnu::javax::crypto::mode::IMode * getInstance(::java::lang::String *, ::gnu::javax::crypto::cipher::IBlockCipher *, jint);
  33. static ::java::util::Set * getNames();
  34. private:
  35. static ::java::util::Set * names;
  36. public:
  37. static ::java::lang::Class class$;
  38. };
  39. #endif // __gnu_javax_crypto_mode_ModeFactory__