Package edu.mit.jgss.swig

Examples of edu.mit.jgss.swig.gss_OID_desc.toDotString()


            /* note that underlying native MIT gssapi library only supports
               gss_mech_krb5_old and gss_mech_krb5 mechanism types, so
               we're explicity requiring gss_mech_krb5 to be used */
            tmpOid = mech.getNativeOid();

            if (!tmpOid.toDotString().equals("1.2.840.113554.1.2.2")) {
                throw new GSSExceptionImpl((int)maj_status, (int)min_status[0]);
            }
        }

        maj_status = gsswrapper.gss_canonicalize_name(min_status,
View Full Code Here


        if (maj_status != gsswrapper.GSS_S_COMPLETE) {
            return null;
        }

        Oid newOid = new Oid(output_name_type.toDotString());

        return newOid;
    }

    public boolean isAnonymous() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.