OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / gnu / javax / crypto / jce / sig / DHKeyFactory.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __gnu_javax_crypto_jce_sig_DHKeyFactory__
5 #define __gnu_javax_crypto_jce_sig_DHKeyFactory__
6
7 #pragma interface
8
9 #include <java/security/KeyFactorySpi.h>
10 extern "Java"
11 {
12   namespace gnu
13   {
14     namespace javax
15     {
16       namespace crypto
17       {
18         namespace jce
19         {
20           namespace sig
21           {
22               class DHKeyFactory;
23           }
24         }
25       }
26     }
27   }
28   namespace java
29   {
30     namespace security
31     {
32         class Key;
33         class PrivateKey;
34         class PublicKey;
35       namespace spec
36       {
37           class KeySpec;
38       }
39     }
40   }
41 }
42
43 class gnu::javax::crypto::jce::sig::DHKeyFactory : public ::java::security::KeyFactorySpi
44 {
45
46 public:
47   DHKeyFactory();
48 public: // actually protected
49   virtual ::java::security::PublicKey * engineGeneratePublic(::java::security::spec::KeySpec *);
50   virtual ::java::security::PrivateKey * engineGeneratePrivate(::java::security::spec::KeySpec *);
51   virtual ::java::security::spec::KeySpec * engineGetKeySpec(::java::security::Key *, ::java::lang::Class *);
52   virtual ::java::security::Key * engineTranslateKey(::java::security::Key *);
53 public:
54   static ::java::lang::Class class$;
55 };
56
57 #endif // __gnu_javax_crypto_jce_sig_DHKeyFactory__