Home
last modified time | relevance | path

Searched refs:ntlm (Results 1 – 25 of 40) sorted by relevance

12

/freebsd/crypto/heimdal/doc/doxyout/ntlm/
H A Dmanpages1 ntlm/man/man3/challenge.3
2 ntlm/man/man3/context.3
3 ntlm/man/man3/data.3
4 ntlm/man/man3/domain.3
5 ntlm/man/man3/flags.3
6 ntlm/man/man3/heim_ntlm_build_ntlm1_master.3
7 ntlm/man/man3/heim_ntlm_build_ntlm2_master.3
8 ntlm/man/man3/heim_ntlm_calculate_lm2.3
9 ntlm/man/man3/heim_ntlm_calculate_ntlm1.3
10 ntlm/man/man3/heim_ntlm_calculate_ntlm2.3
[all …]
/freebsd/crypto/heimdal/lib/gssapi/
H A DMakefile.am12 -I$(srcdir)/ntlm \
171 ntlm/accept_sec_context.c \
172 ntlm/acquire_cred.c \
173 ntlm/add_cred.c \
174 ntlm/canonicalize_name.c \
175 ntlm/compare_name.c \
176 ntlm/context_time.c \
177 ntlm/creds.c \
178 ntlm/crypto.c \
179 ntlm/delete_sec_context.c \
[all …]
H A DMakefile.in196 am__objects_3 = ntlm/accept_sec_context.lo ntlm/acquire_cred.lo \
197 ntlm/add_cred.lo ntlm/canonicalize_name.lo \
198 ntlm/compare_name.lo ntlm/context_time.lo ntlm/creds.lo \
199 ntlm/crypto.lo ntlm/delete_sec_context.lo ntlm/display_name.lo \
200 ntlm/display_status.lo ntlm/duplicate_name.lo \
201 ntlm/export_name.lo ntlm/export_sec_context.lo \
202 ntlm/external.lo ntlm/import_name.lo \
203 ntlm/import_sec_context.lo ntlm/indicate_mechs.lo \
204 ntlm/init_sec_context.lo ntlm/inquire_context.lo \
205 ntlm/inquire_cred_by_mech.lo ntlm/inquire_mechs_for_name.lo \
[all …]
H A DChangeLog8 * ntlm/init_sec_context.c: Catch error
17 * ntlm/init_sec_context.c: Use krb5_cc_get_config.
32 * ntlm/init_sec_context.c: use krb5_get_error_message
105 * ntlm/accept_sec_context.c: Avoid free-ing type1 message before
110 * test_ntlm.c: Test source name (and make the acceptor in ntlm gss
115 * ntlm/init_sec_context.c: Don't confuse target name and source
120 * ntlm: clean up name handling
124 * ntlm/init_sec_context.c: Use credential if it was passed in.
126 * ntlm/acquire_cred.c: Check if there is initial creds with
129 * ntlm/init_sec_context.c: Add _gss_ntlm_get_user_info() that
[all …]
H A Dtest_ntlm.c122 &type3.ntlm); in test_libntlm_v1()
251 &type3.ntlm); in test_libntlm_v2()
/freebsd/crypto/heimdal/lib/krb5/
H A Ddigest.c842 krb5_ntlm *ntlm) in krb5_ntlm_alloc() argument
844 *ntlm = calloc(1, sizeof(**ntlm)); in krb5_ntlm_alloc()
845 if (*ntlm == NULL) { in krb5_ntlm_alloc()
853 krb5_ntlm_free(krb5_context context, krb5_ntlm ntlm) in krb5_ntlm_free() argument
855 free_NTLMInit(&ntlm->init); in krb5_ntlm_free()
856 free_NTLMInitReply(&ntlm->initReply); in krb5_ntlm_free()
857 free_NTLMRequest(&ntlm->request); in krb5_ntlm_free()
858 free_NTLMResponse(&ntlm->response); in krb5_ntlm_free()
859 memset(ntlm, 0, sizeof(*ntlm)); in krb5_ntlm_free()
860 free(ntlm); in krb5_ntlm_free()
[all …]
/freebsd/crypto/heimdal/lib/ntlm/
H A DChangeLog3 * ntlm.c: replace hashes with keys.
7 * ntlm.c: Use DES_set_key_unchecked().
13 * ntlm.c: Make heim_ntlm_decode_type3 more useful and provide a
26 * ntlm.c: Use unsigned char * as argument to HMAC_Update to please
39 * ntlm.c: Change prototype to match other heim_ntlm_calculate
44 * ntlm.c: Merge in changes from Puneet Mehra and make work again.
46 * ntlm.c (heim_ntlm_ntlmv2_key): target should be uppercase.
52 * ntlm.c: Add heim_ntlm_calculate_ntlm2_sess_resp from Puneet
66 * ntlm.c: Make free functions free memory.
86 * ntlm.c: Extract the infotarget from the answer.
[all …]
H A Dtest_ntlm.c122 &type3.ntlm); in test_parse()
130 free(type3.ntlm.data); in test_parse()
251 struct ntlm_buf lm, ntlm; in test_ntlm2_session_resp() local
275 &ntlm); in test_ntlm2_session_resp()
281 if (ntlm.length != 24 || memcmp(ntlm.data, ntlm2_sess_resp, 24) != 0) in test_ntlm2_session_resp()
285 free(ntlm.data); in test_ntlm2_session_resp()
H A Dntlm.c819 heim_ntlm_free_buf(&data->ntlm); in heim_ntlm_free_type3()
843 struct sec_buffer lm, ntlm, target, username, sessionkey, ws; in heim_ntlm_decode_type3() local
863 CHECK(ret_sec_buffer(in, &ntlm), 0); in heim_ntlm_decode_type3()
864 if (ntlm.allocated) in heim_ntlm_decode_type3()
865 min_offset = min(min_offset, ntlm.offset); in heim_ntlm_decode_type3()
886 CHECK(ret_buf(in, &ntlm, &type3->ntlm), 0); in heim_ntlm_decode_type3()
918 struct sec_buffer lm, ntlm, target, username, sessionkey, ws; in heim_ntlm_encode_type3() local
925 memset(&ntlm, 0, sizeof(ntlm)); in heim_ntlm_encode_type3()
959 ntlm.offset = lm.offset + lm.allocated; in heim_ntlm_encode_type3()
960 ntlm.length = type3->ntlm.length; in heim_ntlm_encode_type3()
[all …]
H A Dntlm_err.et2 # Error messages for the ntlm library
7 error_table ntlm
H A Dheimntlm.h148 struct ntlm_buf ntlm; /**< */ member
/freebsd/crypto/heimdal/lib/gssapi/ntlm/
H A Dkdc.c44 krb5_ntlm ntlm; member
183 ret = krb5_ntlm_alloc(c->context, &c->ntlm); in kdc_alloc()
222 if (c->ntlm) in kdc_destroy()
223 krb5_ntlm_free(c->context, c->ntlm); in kdc_destroy()
264 c->ntlm, in kdc_type2()
279 ret = krb5_ntlm_init_get_opaque(c->context, c->ntlm, &c->opaque); in kdc_type2()
289 ret = krb5_ntlm_init_get_flags(c->context, c->ntlm, &type2.flags); in kdc_type2()
296 ret = krb5_ntlm_init_get_challange(c->context, c->ntlm, &challange); in kdc_type2()
309 ret = krb5_ntlm_init_get_targetname(c->context, c->ntlm, in kdc_type2()
316 ret = krb5_ntlm_init_get_targetinfo(c->context, c->ntlm, &ti); in kdc_type2()
[all …]
H A Dinit_sec_context.c354 &type3.ntlm); in _gss_ntlm_init_sec_context()
359 &type3.ntlm); in _gss_ntlm_init_sec_context()
375 if (type3.ntlm.data) in _gss_ntlm_init_sec_context()
376 free(type3.ntlm.data); in _gss_ntlm_init_sec_context()
388 if (type3.ntlm.data) in _gss_ntlm_init_sec_context()
389 free(type3.ntlm.data); in _gss_ntlm_init_sec_context()
425 &type3.ntlm); in _gss_ntlm_init_sec_context()
481 if (type3.ntlm.data) in _gss_ntlm_init_sec_context()
482 free(type3.ntlm.data); in _gss_ntlm_init_sec_context()
/freebsd/crypto/heimdal/doc/
H A DMakefile.am42 ntlm.dxy: ntlm.din Makefile
43 $(dxy_subst) < $(srcdir)/ntlm.din > ntlm.dxy.tmp
44 chmod +x ntlm.dxy.tmp
45 mv ntlm.dxy.tmp ntlm.dxy
60 PROJECTS = hcrypto hdb hx509 gssapi krb5 ntlm wind
62 doxyout doxygen: hdb.dxy hx509.dxy hcrypto.dxy gssapi.dxy krb5.dxy ntlm.dxy wind.dxy
128 ntlm.din \
142 ntlm.dxy* \
H A Dntlm.din3 PROJECT_NAME = Heimdal ntlm library
5 OUTPUT_DIRECTORY = @srcdir@/doxyout/ntlm
6 INPUT = @srcdir@/../lib/ntlm
7 EXAMPLE_PATH = @srcdir@/../lib/ntlm
H A DMakefile.in389 PROJECTS = hcrypto hdb hx509 gssapi krb5 ntlm wind
417 ntlm.din \
431 ntlm.dxy* \
1068 ntlm.dxy: ntlm.din Makefile
1069 $(dxy_subst) < $(srcdir)/ntlm.din > ntlm.dxy.tmp
1070 chmod +x ntlm.dxy.tmp
1071 mv ntlm.dxy.tmp ntlm.dxy
1083 doxyout doxygen: hdb.dxy hx509.dxy hcrypto.dxy gssapi.dxy krb5.dxy ntlm.dxy wind.dxy
/freebsd/kerberos5/lib/libheimntlm/
H A DMakefile6 SRCS= ntlm.c ntlm_err.c ntlm_err.h
8 CFLAGS+=-I${KRB5DIR}/lib/ntlm -I${KRB5DIR}/lib/roken \
11 VERSION_MAP= ${KRB5DIR}/lib/ntlm/version-script.map
41 .PATH: ${KRB5DIR}/lib/ntlm ${KRB5DIR}/doc/doxyout/ntlm/man/man3
/freebsd/kerberos5/lib/libgssapi_ntlm/
H A DMakefile42 CFLAGS+=-I${KRB5DIR}/lib/gssapi/ntlm
44 CFLAGS+=-I${KRB5DIR}/lib/ntlm
49 .PATH: ${KRB5DIR}/lib/gssapi/ntlm ${SRCTOP}/lib/libgssapi ${.CURDIR:H}/libgssapi_krb5
/freebsd/crypto/heimdal/kuser/
H A Dkdigest.c434 krb5_ntlm ntlm; in ntlm_server_init() local
443 ret = krb5_ntlm_alloc(context, &ntlm); in ntlm_server_init()
448 ntlm, in ntlm_server_init()
461 ret = krb5_ntlm_init_get_challange(context, ntlm, &challenge); in ntlm_server_init()
470 ret = krb5_ntlm_init_get_flags(context, ntlm, &type2.flags); in ntlm_server_init()
474 krb5_ntlm_init_get_targetname(context, ntlm, &type2.targetname); in ntlm_server_init()
497 ret = krb5_ntlm_init_get_opaque(context, ntlm, &opaque); in ntlm_server_init()
510 krb5_ntlm_free(context, ntlm); in ntlm_server_init()
H A DMakefile.am26 $(top_builddir)/lib/ntlm/libheimntlm.la \
50 $(top_builddir)/lib/ntlm/libheimntlm.la \
/freebsd/crypto/heimdal/lib/asn1/
H A Ddigest.asn19 ntlm-v1(0),
10 ntlm-v1-session(1),
11 ntlm-v2(2),
92 ntlm [6] OCTET STRING,
/freebsd/etc/gss/
H A Dmech5 #ntlm 1.3.6.1.4.1.311.2.2.10 /usr/lib/libgssapi_ntlm.so.10 -
/freebsd/crypto/heimdal/kdc/
H A DMakefile.am95 $(top_builddir)/lib/ntlm/libheimntlm.la \
118 $(top_builddir)/lib/ntlm/libheimntlm.la \
/freebsd/crypto/heimdal/lib/
H A DMakefile.am37 ntlm \ subdir
/freebsd/kerberos5/libexec/hprop/
H A DMakefile10 CFLAGS+=-I${KRB5DIR}/lib/ntlm

12