rt_gccstream/libjava/javax/crypto/spec/DHPublicKeySpec.h
apop 5c1fb0cf09 Creating a development branch for OpenMP stream extensions.
git-svn-id: svn://gcc.gnu.org/svn/gcc/branches/omp-stream@159266 138bc75d-0d04-0410-961f-82ee72b054a4
2010-05-11 10:00:02 +00:00

48 lines
1022 B
C++

// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __javax_crypto_spec_DHPublicKeySpec__
#define __javax_crypto_spec_DHPublicKeySpec__
#pragma interface
#include <java/lang/Object.h>
extern "Java"
{
namespace java
{
namespace math
{
class BigInteger;
}
}
namespace javax
{
namespace crypto
{
namespace spec
{
class DHPublicKeySpec;
}
}
}
}
class javax::crypto::spec::DHPublicKeySpec : public ::java::lang::Object
{
public:
DHPublicKeySpec(::java::math::BigInteger *, ::java::math::BigInteger *, ::java::math::BigInteger *);
virtual ::java::math::BigInteger * getG();
virtual ::java::math::BigInteger * getP();
virtual ::java::math::BigInteger * getY();
private:
::java::math::BigInteger * __attribute__((aligned(__alignof__( ::java::lang::Object)))) g;
::java::math::BigInteger * p;
::java::math::BigInteger * y;
public:
static ::java::lang::Class class$;
};
#endif // __javax_crypto_spec_DHPublicKeySpec__