ICMGenerator.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __gnu_javax_crypto_prng_ICMGenerator__
  3. #define __gnu_javax_crypto_prng_ICMGenerator__
  4. #pragma interface
  5. #include <gnu/java/security/prng/BasePRNG.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 prng
  19. {
  20. class ICMGenerator;
  21. }
  22. }
  23. }
  24. }
  25. namespace java
  26. {
  27. namespace math
  28. {
  29. class BigInteger;
  30. }
  31. }
  32. }
  33. class gnu::javax::crypto::prng::ICMGenerator : public ::gnu::java::security::prng::BasePRNG
  34. {
  35. public:
  36. ICMGenerator();
  37. virtual void setup(::java::util::Map *);
  38. virtual void fillBlock();
  39. static ::java::lang::String * CIPHER;
  40. static ::java::lang::String * BLOCK_INDEX_LENGTH;
  41. static ::java::lang::String * SEGMENT_INDEX_LENGTH;
  42. static ::java::lang::String * OFFSET;
  43. static ::java::lang::String * SEGMENT_INDEX;
  44. private:
  45. static ::java::math::BigInteger * TWO_FIFTY_SIX;
  46. ::gnu::javax::crypto::cipher::IBlockCipher * __attribute__((aligned(__alignof__( ::gnu::java::security::prng::BasePRNG)))) cipher;
  47. jint blockNdxLength;
  48. jint segmentNdxLength;
  49. ::java::math::BigInteger * blockNdx;
  50. ::java::math::BigInteger * segmentNdx;
  51. ::java::math::BigInteger * C0;
  52. public:
  53. static ::java::lang::Class class$;
  54. };
  55. #endif // __gnu_javax_crypto_prng_ICMGenerator__