diff options
author | Stefan Metzmacher <metze@samba.org> | 2022-02-11 13:19:50 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2022-04-13 12:59:30 +0000 |
commit | 21d1a9509a65e9db5d651d73d4927ba9120adaac (patch) | |
tree | 376fcfcc20a6c45205f337932007edfa1ca76b13 /librpc | |
parent | 685006c8309ae0740d37cef5854acb995b7fdd3a (diff) | |
download | samba-21d1a9509a65e9db5d651d73d4927ba9120adaac.tar.gz |
librpc:idl: Add comments to assert identity string in security.idl
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/security.idl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/librpc/idl/security.idl b/librpc/idl/security.idl index 6b867595a28..b8604741164 100644 --- a/librpc/idl/security.idl +++ b/librpc/idl/security.idl @@ -298,7 +298,18 @@ interface security const string SID_NT_TRUSTED_INSTALLER = "S-1-5-80-956008885-3418522649-1831038044-1853292631-2271478464"; + /* + * This is added during the AS-REQ/AS-REP exchange after + * pre-authentication was successful. + */ const string SID_AUTHENTICATION_AUTHORITY_ASSERTED_IDENTITY = "S-1-18-1"; + /* + * This is added during S4U2Self PAC creation. + * + * It won't replace a possible + * SID_AUTHENTICATION_AUTHORITY_ASSERTED_IDENTITY + * during S4U2Proxy. + */ const string SID_SERVICE_ASSERTED_IDENTITY = "S-1-18-2"; const string SID_COMPOUNDED_AUTHENTICATION = "S-1-5-21-0-0-0-496"; |