NullCipherImpl.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __javax_crypto_NullCipherImpl__
  3. #define __javax_crypto_NullCipherImpl__
  4. #pragma interface
  5. #include <javax/crypto/CipherSpi.h>
  6. #include <gcj/array.h>
  7. extern "Java"
  8. {
  9. namespace java
  10. {
  11. namespace security
  12. {
  13. class AlgorithmParameters;
  14. class Key;
  15. class SecureRandom;
  16. namespace spec
  17. {
  18. class AlgorithmParameterSpec;
  19. }
  20. }
  21. }
  22. namespace javax
  23. {
  24. namespace crypto
  25. {
  26. class NullCipherImpl;
  27. }
  28. }
  29. }
  30. class javax::crypto::NullCipherImpl : public ::javax::crypto::CipherSpi
  31. {
  32. public: // actually package-private
  33. NullCipherImpl();
  34. public: // actually protected
  35. void engineSetMode(::java::lang::String *);
  36. void engineSetPadding(::java::lang::String *);
  37. jint engineGetBlockSize();
  38. jint engineGetOutputSize(jint);
  39. JArray< jbyte > * engineGetIV();
  40. ::java::security::AlgorithmParameters * engineGetParameters();
  41. void engineInit(jint, ::java::security::Key *, ::java::security::SecureRandom *);
  42. void engineInit(jint, ::java::security::Key *, ::java::security::spec::AlgorithmParameterSpec *, ::java::security::SecureRandom *);
  43. void engineInit(jint, ::java::security::Key *, ::java::security::AlgorithmParameters *, ::java::security::SecureRandom *);
  44. JArray< jbyte > * engineUpdate(JArray< jbyte > *, jint, jint);
  45. jint engineUpdate(JArray< jbyte > *, jint, jint, JArray< jbyte > *, jint);
  46. JArray< jbyte > * engineDoFinal(JArray< jbyte > *, jint, jint);
  47. jint engineDoFinal(JArray< jbyte > *, jint, jint, JArray< jbyte > *, jint);
  48. public:
  49. static ::java::lang::Class class$;
  50. };
  51. #endif // __javax_crypto_NullCipherImpl__