mirror of
https://github.com/samba-team/samba.git
synced 2025-01-14 19:24:43 +03:00
9a7481bcfe
We now generate the PAC, and can verifiy both our own PAC and the PAC from Win2k3. This commit adds the PAC generation code, spits out the code to get the information we need from the NETLOGON server back into a auth/ helper function, and adds a number of glue functions. In the process of building the PAC generation code, some hints in the Microsoft PAC specification shed light on other parts of the code, and the updates to samr.idl and netlogon.idl come from those hints. Also in this commit: The Heimdal build package has been split up, so as to only link the KDC with smbd, not the client utils. To enable the PAC to be veified with gensec_krb5 (which isn't quite dead yet), the keyblock has been passed back to the calling layer. Andrew Bartlett (This used to be commit e2015671c2f7501f832ff402873ffe6e53b89466)
14 lines
270 B
Makefile
14 lines
270 B
Makefile
# KDC server subsystem
|
|
|
|
#######################
|
|
# Start SUBSYSTEM KDC
|
|
[SUBSYSTEM::KDC]
|
|
INIT_OBJ_FILES = \
|
|
kdc/kdc.o \
|
|
kdc/pac-glue.o \
|
|
kdc/hdb-ldb.o
|
|
REQUIRED_SUBSYSTEMS = \
|
|
LIBLDB KERBEROS_LIB HEIMDAL_KDC HEIMDAL_HDB
|
|
# End SUBSYSTEM KDC
|
|
#######################
|