source: vendor/current/source3/librpc/idl/secrets.idl

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 842 bytes
Line 
1#include "idl_types.h"
2
3import "security.idl";
4
5/*
6 IDL structures for secrets code
7*/
8
9[
10 pointer_default(unique)
11]
12 interface secrets
13{
14
15 /*
16 * s3 on-disc storage structure for trusted domains, do not change !
17 */
18
19 typedef [flag(NDR_NOALIGN),public] struct {
20 [value(strlen_m_term(uni_name))] uint32 uni_name_len;
21 [charset(UTF16)] uint16 uni_name[32]; /* unicode domain name */
22 [value(strlen(pass))] uint32 pass_len;
23 astring pass; /* trust relationship's password */
24 time_t mod_time;
25 dom_sid domain_sid; /* remote domain's sid */
26 } TRUSTED_DOM_PASS;
27
28 /*
29 * s3 on-disc storage structure for lsa secrets, do not change !
30 */
31
32 typedef [public] struct {
33 DATA_BLOB *secret_current;
34 NTTIME secret_current_lastchange;
35 DATA_BLOB *secret_old;
36 NTTIME secret_old_lastchange;
37 security_descriptor *sd;
38 } lsa_secret;
39
40}
41
Note: See TracBrowser for help on using the repository browser.