SecretKeyFactorySpi.h 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __javax_crypto_SecretKeyFactorySpi__
  3. #define __javax_crypto_SecretKeyFactorySpi__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace security
  11. {
  12. namespace spec
  13. {
  14. class KeySpec;
  15. }
  16. }
  17. }
  18. namespace javax
  19. {
  20. namespace crypto
  21. {
  22. class SecretKey;
  23. class SecretKeyFactorySpi;
  24. }
  25. }
  26. }
  27. class javax::crypto::SecretKeyFactorySpi : public ::java::lang::Object
  28. {
  29. public:
  30. SecretKeyFactorySpi();
  31. public: // actually protected
  32. virtual ::javax::crypto::SecretKey * engineGenerateSecret(::java::security::spec::KeySpec *) = 0;
  33. virtual ::java::security::spec::KeySpec * engineGetKeySpec(::javax::crypto::SecretKey *, ::java::lang::Class *) = 0;
  34. virtual ::javax::crypto::SecretKey * engineTranslateKey(::javax::crypto::SecretKey *) = 0;
  35. public:
  36. static ::java::lang::Class class$;
  37. };
  38. #endif // __javax_crypto_SecretKeyFactorySpi__