< prev index next >

src/java.security.jgss/share/native/libj2gss/NativeUtil.h

Print this page
rev 12879 : 8136556: Add the ability to perform static builds of MacOSX x64 binaries
Reviewed-by: ihse, bdelsart, gadams, lfoltan, rriggs, hseigel, twisti
   1 /*
   2  * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  36   extern jint getJavaTime(OM_uint32);
  37   extern OM_uint32 getGSSTime(jint);
  38   extern void checkStatus(JNIEnv *, jobject, OM_uint32, OM_uint32, char*);
  39   extern jint checkTime(OM_uint32);
  40   extern void throwOutOfMemoryError(JNIEnv *, const char*);
  41   extern void initGSSBuffer(JNIEnv *, jbyteArray, gss_buffer_t);
  42   extern void resetGSSBuffer(gss_buffer_t);
  43 
  44   extern gss_OID newGSSOID(JNIEnv *, jobject);
  45   extern void deleteGSSOID(gss_OID);
  46   extern gss_OID_set newGSSOIDSet(gss_OID);
  47   extern void deleteGSSOIDSet(gss_OID_set);
  48 
  49   extern jbyteArray getJavaBuffer(JNIEnv *, gss_buffer_t);
  50   extern jstring getJavaString(JNIEnv *, gss_buffer_t);
  51   extern jobject getJavaOID(JNIEnv *, gss_OID);
  52   extern jobjectArray getJavaOIDArray(JNIEnv *, gss_OID_set);
  53 
  54   extern jstring getMinorMessage(JNIEnv *, jobject, OM_uint32);
  55   extern int sameMech(gss_OID, gss_OID);
  56 
  57   JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *, void *);
  58   JNIEXPORT void JNICALL JNI_OnUnload(JavaVM *, void *);
  59 
  60   extern int JGSS_DEBUG;
  61 
  62   extern jclass CLS_Object;
  63   extern jclass CLS_GSSNameElement;
  64   extern jclass CLS_GSSCredElement;
  65   extern jclass CLS_NativeGSSContext;
  66   extern jmethodID MID_MessageProp_getPrivacy;
  67   extern jmethodID MID_MessageProp_getQOP;
  68   extern jmethodID MID_MessageProp_setPrivacy;
  69   extern jmethodID MID_MessageProp_setQOP;
  70   extern jmethodID MID_MessageProp_setSupplementaryStates;
  71   extern jmethodID MID_ChannelBinding_getInitiatorAddr;
  72   extern jmethodID MID_ChannelBinding_getAcceptorAddr;
  73   extern jmethodID MID_ChannelBinding_getAppData;
  74   extern jmethodID MID_InetAddress_getAddr;
  75   extern jmethodID MID_GSSNameElement_ctor;
  76   extern jmethodID MID_GSSCredElement_ctor;
  77   extern jmethodID MID_NativeGSSContext_ctor;
  78   extern jfieldID FID_GSSLibStub_pMech;
   1 /*
   2  * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  36   extern jint getJavaTime(OM_uint32);
  37   extern OM_uint32 getGSSTime(jint);
  38   extern void checkStatus(JNIEnv *, jobject, OM_uint32, OM_uint32, char*);
  39   extern jint checkTime(OM_uint32);
  40   extern void throwOutOfMemoryError(JNIEnv *, const char*);
  41   extern void initGSSBuffer(JNIEnv *, jbyteArray, gss_buffer_t);
  42   extern void resetGSSBuffer(gss_buffer_t);
  43 
  44   extern gss_OID newGSSOID(JNIEnv *, jobject);
  45   extern void deleteGSSOID(gss_OID);
  46   extern gss_OID_set newGSSOIDSet(gss_OID);
  47   extern void deleteGSSOIDSet(gss_OID_set);
  48 
  49   extern jbyteArray getJavaBuffer(JNIEnv *, gss_buffer_t);
  50   extern jstring getJavaString(JNIEnv *, gss_buffer_t);
  51   extern jobject getJavaOID(JNIEnv *, gss_OID);
  52   extern jobjectArray getJavaOIDArray(JNIEnv *, gss_OID_set);
  53 
  54   extern jstring getMinorMessage(JNIEnv *, jobject, OM_uint32);
  55   extern int sameMech(gss_OID, gss_OID);



  56 
  57   extern int JGSS_DEBUG;
  58 
  59   extern jclass CLS_Object;
  60   extern jclass CLS_GSSNameElement;
  61   extern jclass CLS_GSSCredElement;
  62   extern jclass CLS_NativeGSSContext;
  63   extern jmethodID MID_MessageProp_getPrivacy;
  64   extern jmethodID MID_MessageProp_getQOP;
  65   extern jmethodID MID_MessageProp_setPrivacy;
  66   extern jmethodID MID_MessageProp_setQOP;
  67   extern jmethodID MID_MessageProp_setSupplementaryStates;
  68   extern jmethodID MID_ChannelBinding_getInitiatorAddr;
  69   extern jmethodID MID_ChannelBinding_getAcceptorAddr;
  70   extern jmethodID MID_ChannelBinding_getAppData;
  71   extern jmethodID MID_InetAddress_getAddr;
  72   extern jmethodID MID_GSSNameElement_ctor;
  73   extern jmethodID MID_GSSCredElement_ctor;
  74   extern jmethodID MID_NativeGSSContext_ctor;
  75   extern jfieldID FID_GSSLibStub_pMech;
< prev index next >