003 File Manager
Current Path:
/usr/src/crypto/heimdal/lib/gssapi
usr
/
src
/
crypto
/
heimdal
/
lib
/
gssapi
/
π
..
π
ChangeLog
(88.42 KB)
π
Makefile.am
(9.01 KB)
π
Makefile.in
(97.23 KB)
π
gss-commands.in
(2.04 KB)
π
gss_acquire_cred.3
(17.84 KB)
π
gssapi
π
gssapi.3
(5.61 KB)
π
gssapi.h
(1.68 KB)
π
gssapi_mech.h
(21.52 KB)
π
gsstool.c
(6.52 KB)
π
krb5
π
mech
π
ntlm
π
spnego
π
test_acquire_cred.c
(8.51 KB)
π
test_common.c
(2.72 KB)
π
test_common.h
(1.65 KB)
π
test_context.c
(28.28 KB)
π
test_cred.c
(5.95 KB)
π
test_kcred.c
(5.2 KB)
π
test_names.c
(6.16 KB)
π
test_ntlm.c
(8.25 KB)
π
test_oid.c
(2.43 KB)
π
version-script.map
(5.53 KB)
Editing: test_oid.c
/* * Copyright (c) 2006 Kungliga Tekniska HΓΆgskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <roken.h> #include <stdio.h> #include <gssapi.h> #include <gssapi_krb5.h> #include <gssapi_spnego.h> #include <err.h> int main(int argc, char **argv) { OM_uint32 minor_status, maj_stat; gss_buffer_desc data; int ret; maj_stat = gss_oid_to_str(&minor_status, GSS_KRB5_MECHANISM, &data); if (GSS_ERROR(maj_stat)) errx(1, "gss_oid_to_str failed"); ret = strncmp(data.value, "1 2 840 113554 1 2 2", data.length); gss_release_buffer(&maj_stat, &data); if (ret) return 1; maj_stat = gss_oid_to_str(&minor_status, GSS_C_NT_EXPORT_NAME, &data); if (GSS_ERROR(maj_stat)) errx(1, "gss_oid_to_str failed"); ret = strncmp(data.value, "1 3 6 1 5 6 4", data.length); gss_release_buffer(&maj_stat, &data); if (ret) return 1; return 0; }
Upload File
Create Folder