RSAPrivateKey.h 997 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
  2. #ifndef __java_security_interfaces_RSAPrivateKey__
  3. #define __java_security_interfaces_RSAPrivateKey__
  4. #pragma interface
  5. #include <java/lang/Object.h>
  6. #include <gcj/array.h>
  7. extern "Java"
  8. {
  9. namespace java
  10. {
  11. namespace math
  12. {
  13. class BigInteger;
  14. }
  15. namespace security
  16. {
  17. namespace interfaces
  18. {
  19. class RSAPrivateKey;
  20. }
  21. }
  22. }
  23. }
  24. class java::security::interfaces::RSAPrivateKey : public ::java::lang::Object
  25. {
  26. public:
  27. virtual ::java::math::BigInteger * getPrivateExponent() = 0;
  28. virtual ::java::lang::String * getAlgorithm() = 0;
  29. virtual ::java::lang::String * getFormat() = 0;
  30. virtual JArray< jbyte > * getEncoded() = 0;
  31. virtual ::java::math::BigInteger * getModulus() = 0;
  32. static const jlong serialVersionUID = 5187144804936595022LL;
  33. static ::java::lang::Class class$;
  34. } __attribute__ ((java_interface));
  35. #endif // __java_security_interfaces_RSAPrivateKey__