summaryrefslogtreecommitdiff
path: root/libjava/javax/crypto/SecretKeyFactorySpi.h
blob: 91a17d69aa75bfc2028bf0545bf93b3332acc450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __javax_crypto_SecretKeyFactorySpi__
#define __javax_crypto_SecretKeyFactorySpi__

#pragma interface

#include <java/lang/Object.h>
extern "Java"
{
  namespace java
  {
    namespace security
    {
      namespace spec
      {
          class KeySpec;
      }
    }
  }
  namespace javax
  {
    namespace crypto
    {
        class SecretKey;
        class SecretKeyFactorySpi;
    }
  }
}

class javax::crypto::SecretKeyFactorySpi : public ::java::lang::Object
{

public:
  SecretKeyFactorySpi();
public: // actually protected
  virtual ::javax::crypto::SecretKey * engineGenerateSecret(::java::security::spec::KeySpec *) = 0;
  virtual ::java::security::spec::KeySpec * engineGetKeySpec(::javax::crypto::SecretKey *, ::java::lang::Class *) = 0;
  virtual ::javax::crypto::SecretKey * engineTranslateKey(::javax::crypto::SecretKey *) = 0;
public:
  static ::java::lang::Class class$;
};

#endif // __javax_crypto_SecretKeyFactorySpi__