RSAPrivateCrtKeySpec.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_security_spec_RSAPrivateCrtKeySpec__
  3. #define __java_security_spec_RSAPrivateCrtKeySpec__
  4. #pragma interface
  5. #include <java/security/spec/RSAPrivateKeySpec.h>
  6. extern "Java"
  7. {
  8. namespace java
  9. {
  10. namespace math
  11. {
  12. class BigInteger;
  13. }
  14. namespace security
  15. {
  16. namespace spec
  17. {
  18. class RSAPrivateCrtKeySpec;
  19. }
  20. }
  21. }
  22. }
  23. class java::security::spec::RSAPrivateCrtKeySpec : public ::java::security::spec::RSAPrivateKeySpec
  24. {
  25. public:
  26. RSAPrivateCrtKeySpec(::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *);
  27. virtual ::java::math::BigInteger * getPublicExponent();
  28. virtual ::java::math::BigInteger * getPrimeP();
  29. virtual ::java::math::BigInteger * getPrimeQ();
  30. virtual ::java::math::BigInteger * getPrimeExponentP();
  31. virtual ::java::math::BigInteger * getPrimeExponentQ();
  32. virtual ::java::math::BigInteger * getCrtCoefficient();
  33. private:
  34. ::java::math::BigInteger * __attribute__((aligned(__alignof__( ::java::security::spec::RSAPrivateKeySpec)))) publicExponent;
  35. ::java::math::BigInteger * primeP;
  36. ::java::math::BigInteger * primeQ;
  37. ::java::math::BigInteger * primeExponentP;
  38. ::java::math::BigInteger * primeExponentQ;
  39. ::java::math::BigInteger * crtCoefficient;
  40. public:
  41. static ::java::lang::Class class$;
  42. };
  43. #endif // __java_security_spec_RSAPrivateCrtKeySpec__