diff options
-rw-r--r-- | source3/librpc/idl/secrets.idl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/librpc/idl/secrets.idl b/source3/librpc/idl/secrets.idl index b73f88b766..1d0ba1940a 100644 --- a/source3/librpc/idl/secrets.idl +++ b/source3/librpc/idl/secrets.idl @@ -25,5 +25,17 @@ import "security.idl"; dom_sid domain_sid; /* remote domain's sid */ } TRUSTED_DOM_PASS; + /* + * s3 on-disc storage structure for lsa secrets, do not change ! + */ + + typedef [public] struct { + DATA_BLOB *secret_current; + NTTIME secret_current_lastchange; + DATA_BLOB *secret_old; + NTTIME secret_old_lastchange; + security_descriptor *sd; + } lsa_secret; + } |