mirror of git://gcc.gnu.org/git/gcc.git
69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
|
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
|
|
|
|
#ifndef __gnu_java_security_key_rsa_GnuRSAPrivateKey__
|
|
#define __gnu_java_security_key_rsa_GnuRSAPrivateKey__
|
|
|
|
#pragma interface
|
|
|
|
#include <gnu/java/security/key/rsa/GnuRSAKey.h>
|
|
#include <gcj/array.h>
|
|
|
|
extern "Java"
|
|
{
|
|
namespace gnu
|
|
{
|
|
namespace java
|
|
{
|
|
namespace security
|
|
{
|
|
namespace key
|
|
{
|
|
namespace rsa
|
|
{
|
|
class GnuRSAPrivateKey;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
namespace java
|
|
{
|
|
namespace math
|
|
{
|
|
class BigInteger;
|
|
}
|
|
}
|
|
}
|
|
|
|
class gnu::java::security::key::rsa::GnuRSAPrivateKey : public ::gnu::java::security::key::rsa::GnuRSAKey
|
|
{
|
|
|
|
public:
|
|
GnuRSAPrivateKey(::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *);
|
|
GnuRSAPrivateKey(jint, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *);
|
|
GnuRSAPrivateKey(jint, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *);
|
|
static ::gnu::java::security::key::rsa::GnuRSAPrivateKey * valueOf(JArray< jbyte > *);
|
|
virtual ::java::math::BigInteger * getPrimeP();
|
|
virtual ::java::math::BigInteger * getPrimeQ();
|
|
virtual ::java::math::BigInteger * getPrimeExponentP();
|
|
virtual ::java::math::BigInteger * getPrimeExponentQ();
|
|
virtual ::java::math::BigInteger * getCrtCoefficient();
|
|
virtual ::java::math::BigInteger * getPrivateExponent();
|
|
virtual JArray< jbyte > * getEncoded(jint);
|
|
virtual jboolean equals(::java::lang::Object *);
|
|
virtual ::java::lang::String * toString();
|
|
private:
|
|
::java::math::BigInteger * __attribute__((aligned(__alignof__( ::gnu::java::security::key::rsa::GnuRSAKey)))) p;
|
|
::java::math::BigInteger * q;
|
|
::java::math::BigInteger * d;
|
|
::java::math::BigInteger * dP;
|
|
::java::math::BigInteger * dQ;
|
|
::java::math::BigInteger * qInv;
|
|
::java::lang::String * str;
|
|
public:
|
|
static ::java::lang::Class class$;
|
|
};
|
|
|
|
#endif // __gnu_java_security_key_rsa_GnuRSAPrivateKey__
|