RSAPrivateKeySpec.h 949 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_security_spec_RSAPrivateKeySpec__
  3. #define __java_security_spec_RSAPrivateKeySpec__
  4. #pragma interface
  5. #include <java/lang/Object.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 RSAPrivateKeySpec;
  19. }
  20. }
  21. }
  22. }
  23. class java::security::spec::RSAPrivateKeySpec : public ::java::lang::Object
  24. {
  25. public:
  26. RSAPrivateKeySpec(::java::math::BigInteger *, ::java::math::BigInteger *);
  27. virtual ::java::math::BigInteger * getModulus();
  28. virtual ::java::math::BigInteger * getPrivateExponent();
  29. private:
  30. ::java::math::BigInteger * __attribute__((aligned(__alignof__( ::java::lang::Object)))) modulus;
  31. ::java::math::BigInteger * privateExponent;
  32. public:
  33. static ::java::lang::Class class$;
  34. };
  35. #endif // __java_security_spec_RSAPrivateKeySpec__