Viewing file: AlgorithmParameterGenerator.h (1.82 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_security_AlgorithmParameterGenerator__ #define __java_security_AlgorithmParameterGenerator__
#pragma interface
#include <java/lang/Object.h>
extern "Java" { namespace java { namespace security { class AlgorithmParameters; namespace spec { class AlgorithmParameterSpec; } class SecureRandom; class AlgorithmParameterGenerator; class Provider; class AlgorithmParameterGeneratorSpi; } } };
class ::java::security::AlgorithmParameterGenerator : public ::java::lang::Object { public: // actually protected AlgorithmParameterGenerator (::java::security::AlgorithmParameterGeneratorSpi *, ::java::security::Provider *, ::java::lang::String *); public: ::java::lang::String *getAlgorithm () { return algorithm; } static ::java::security::AlgorithmParameterGenerator *getInstance (::java::lang::String *); static ::java::security::AlgorithmParameterGenerator *getInstance (::java::lang::String *, ::java::lang::String *); private: static ::java::security::AlgorithmParameterGenerator *getInstance (::java::lang::String *, ::java::lang::String *, ::java::security::Provider *); public: ::java::security::Provider *getProvider () { return provider; } void init (jint); void init (jint, ::java::security::SecureRandom *); void init (::java::security::spec::AlgorithmParameterSpec *); void init (::java::security::spec::AlgorithmParameterSpec *, ::java::security::SecureRandom *); ::java::security::AlgorithmParameters *generateParameters (); private: ::java::security::AlgorithmParameterGeneratorSpi *paramGenSpi; ::java::security::Provider *provider; ::java::lang::String *algorithm; public:
static ::java::lang::Class class$; };
#endif /* __java_security_AlgorithmParameterGenerator__ */
|