Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien HENRY2017-04-14 09:08:29 +0000
committerJulien HENRY2017-04-24 07:48:04 +0000
commit2113ebe27fd2ac0cbceba52d0610d342330db528 (patch)
tree4a8ac2230ec6b973e8cf430310283f77bd45f22c /bundles/org.eclipse.equinox.security.linux.x86_64/keystorelinuxnative/keystoreLinuxNative.h
parenta522102710eb0c7adf0c5aa34ce964169be06a6c (diff)
downloadrt.equinox.bundles-2113ebe27fd2ac0cbceba52d0610d342330db528.tar.gz
rt.equinox.bundles-2113ebe27fd2ac0cbceba52d0610d342330db528.tar.xz
rt.equinox.bundles-2113ebe27fd2ac0cbceba52d0610d342330db528.zip
[bug 234509] Equinox keystore fragment for Linux 64bitI20170425-0700I20170425-0240I20170425-0215I20170424-2000
Use libsecret Change-Id: If2a78c2844bce4232f2e15075c28b380a0737ce4 Signed-off-by: Julien HENRY <henryju@yahoo.fr>
Diffstat (limited to 'bundles/org.eclipse.equinox.security.linux.x86_64/keystorelinuxnative/keystoreLinuxNative.h')
-rw-r--r--bundles/org.eclipse.equinox.security.linux.x86_64/keystorelinuxnative/keystoreLinuxNative.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.security.linux.x86_64/keystorelinuxnative/keystoreLinuxNative.h b/bundles/org.eclipse.equinox.security.linux.x86_64/keystorelinuxnative/keystoreLinuxNative.h
new file mode 100644
index 000000000..7dc1aedf8
--- /dev/null
+++ b/bundles/org.eclipse.equinox.security.linux.x86_64/keystorelinuxnative/keystoreLinuxNative.h
@@ -0,0 +1,40 @@
+/*******************************************************************************
+ * Copyright (c) 2007, 2017 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * LinuxPasswordProviderMessages.java
+ *******************************************************************************/
+/* DO NOT EDIT THIS FILE - it is machine generated */
+#include <jni.h>
+/* Header for class LinuxPasswordProvider */
+
+#ifndef _Included_LinuxPasswordProvider
+#define _Included_LinuxPasswordProvider
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/*
+ * Class: LinuxPasswordProvider
+ * Method: getMasterPassword
+ * Signature: ()Ljava/lang/String;
+ */
+JNIEXPORT jstring JNICALL Java_org_eclipse_equinox_internal_security_linux_LinuxPasswordProvider_getMasterPassword
+ (JNIEnv *, jobject);
+
+/*
+ * Class: LinuxPasswordProvider
+ * Method: saveMasterPassword
+ * Signature: (Ljava/lang/String;)V
+ */
+JNIEXPORT void JNICALL Java_org_eclipse_equinox_internal_security_linux_LinuxPasswordProvider_saveMasterPassword
+ (JNIEnv *, jobject, jstring);
+
+#ifdef __cplusplus
+}
+#endif
+#endif

Back to the top