1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-06 13:18:07 +03:00

r2031: add a check for a blank secret return in lsa secret tests

(This used to be commit eddb31d196)
This commit is contained in:
Andrew Tridgell 2004-08-25 00:04:47 +00:00 committed by Gerald (Jerry) Carter
parent 53415ebf8a
commit c58b64b7bf

View File

@ -463,18 +463,23 @@ static BOOL test_CreateSecret(struct dcerpc_pipe *p,
ret = False;
}
blob1.data = r4.out.new_val->buf->data;
blob1.length = r4.out.new_val->buf->length;
blob2 = data_blob(NULL, blob1.length);
secret2 = sess_decrypt_string(&blob1, &session_key);
printf("returned secret '%s'\n", secret2);
if (strcmp(secret1, secret2) != 0) {
printf("Returned secret doesn't match\n");
if (r4.out.new_val->buf == NULL) {
printf("No secret buffer returned\n");
ret = False;
} else {
blob1.data = r4.out.new_val->buf->data;
blob1.length = r4.out.new_val->buf->length;
blob2 = data_blob(NULL, blob1.length);
secret2 = sess_decrypt_string(&blob1, &session_key);
printf("returned secret '%s'\n", secret2);
if (strcmp(secret1, secret2) != 0) {
printf("Returned secret doesn't match\n");
ret = False;
}
}
if (!test_Delete(p, mem_ctx, &sec_handle)) {