SecretKeyGeneratorImpl.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_javax_crypto_jce_key_SecretKeyGeneratorImpl__
  3. #define __gnu_javax_crypto_jce_key_SecretKeyGeneratorImpl__
  4. #pragma interface
  5. #include <javax/crypto/KeyGeneratorSpi.h>
  6. extern "Java"
  7. {
  8. namespace gnu
  9. {
  10. namespace javax
  11. {
  12. namespace crypto
  13. {
  14. namespace jce
  15. {
  16. namespace key
  17. {
  18. class SecretKeyGeneratorImpl;
  19. }
  20. }
  21. }
  22. }
  23. }
  24. namespace java
  25. {
  26. namespace security
  27. {
  28. class SecureRandom;
  29. namespace spec
  30. {
  31. class AlgorithmParameterSpec;
  32. }
  33. }
  34. }
  35. namespace javax
  36. {
  37. namespace crypto
  38. {
  39. class SecretKey;
  40. }
  41. }
  42. }
  43. class gnu::javax::crypto::jce::key::SecretKeyGeneratorImpl : public ::javax::crypto::KeyGeneratorSpi
  44. {
  45. public: // actually protected
  46. SecretKeyGeneratorImpl(::java::lang::String *);
  47. virtual ::javax::crypto::SecretKey * engineGenerateKey();
  48. virtual void engineInit(::java::security::spec::AlgorithmParameterSpec *, ::java::security::SecureRandom *);
  49. virtual void engineInit(jint, ::java::security::SecureRandom *);
  50. virtual void engineInit(::java::security::SecureRandom *);
  51. jint __attribute__((aligned(__alignof__( ::javax::crypto::KeyGeneratorSpi)))) defaultKeySize;
  52. ::java::util::List * keySizes;
  53. ::java::lang::String * algorithm;
  54. jboolean init;
  55. jint currentKeySize;
  56. ::java::security::SecureRandom * random;
  57. public:
  58. static ::java::lang::Class class$;
  59. };
  60. #endif // __gnu_javax_crypto_jce_key_SecretKeyGeneratorImpl__