aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libjava/gnu/javax/crypto/jce/PBKDF2SecretKeyFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.7/libjava/gnu/javax/crypto/jce/PBKDF2SecretKeyFactory.h')
-rw-r--r--gcc-4.7/libjava/gnu/javax/crypto/jce/PBKDF2SecretKeyFactory.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/gcc-4.7/libjava/gnu/javax/crypto/jce/PBKDF2SecretKeyFactory.h b/gcc-4.7/libjava/gnu/javax/crypto/jce/PBKDF2SecretKeyFactory.h
new file mode 100644
index 000000000..97ef99b6b
--- /dev/null
+++ b/gcc-4.7/libjava/gnu/javax/crypto/jce/PBKDF2SecretKeyFactory.h
@@ -0,0 +1,60 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_javax_crypto_jce_PBKDF2SecretKeyFactory__
+#define __gnu_javax_crypto_jce_PBKDF2SecretKeyFactory__
+
+#pragma interface
+
+#include <javax/crypto/SecretKeyFactorySpi.h>
+extern "Java"
+{
+ namespace gnu
+ {
+ namespace javax
+ {
+ namespace crypto
+ {
+ namespace jce
+ {
+ class PBKDF2SecretKeyFactory;
+ }
+ }
+ }
+ }
+ namespace java
+ {
+ namespace security
+ {
+ namespace spec
+ {
+ class KeySpec;
+ }
+ }
+ }
+ namespace javax
+ {
+ namespace crypto
+ {
+ class SecretKey;
+ }
+ }
+}
+
+class gnu::javax::crypto::jce::PBKDF2SecretKeyFactory : public ::javax::crypto::SecretKeyFactorySpi
+{
+
+public: // actually protected
+ PBKDF2SecretKeyFactory(::java::lang::String *);
+ virtual ::javax::crypto::SecretKey * engineGenerateSecret(::java::security::spec::KeySpec *);
+ virtual ::java::security::spec::KeySpec * engineGetKeySpec(::javax::crypto::SecretKey *, ::java::lang::Class *);
+ virtual ::javax::crypto::SecretKey * engineTranslateKey(::javax::crypto::SecretKey *);
+ ::java::lang::String * __attribute__((aligned(__alignof__( ::javax::crypto::SecretKeyFactorySpi)))) macName;
+private:
+ static const jint DEFAULT_ITERATION_COUNT = 1000;
+ static const jint DEFAULT_KEY_LEN = 32;
+public:
+ static ::java::lang::Class class$;
+};
+
+#endif // __gnu_javax_crypto_jce_PBKDF2SecretKeyFactory__