KeyFactorySpi.h 1.0 KB

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