source: libabac/prover.c @ 55c272b

abac0-leakabac0-meicompt_changesgec13mei-idmei-rt0-nmei_rt0mei_rt2mei_rt2_fix_1meiyap-rt1meiyap1rt2tvf-new-xml
Last change on this file since 55c272b was 55c272b, checked in by Mike Ryan <mikeryan@…>, 14 years ago

remove libabac_init and libabac_deinit

  • Property mode set to 100644
File size: 909 bytes
RevLine 
[7f25a67f]1#include <err.h>
2#include <stdio.h>
3
[6ede88c]4#include <abac.h>
[7f25a67f]5
[7af34ed]6#include "options.h"
7
[7f25a67f]8int main(int argc, char **argv) {
[4e426c9]9    int i, success;
[401a054]10    abac_credential_t *cred;
[dc62c68]11
[7af34ed]12    options_t opts = { 0, };
13    get_options(argc, argv, &opts);
[7f25a67f]14
[390f749]15    abac_context_t *ctx = abac_context_new();
[7af34ed]16    abac_context_load_directory(ctx, opts.keystore);
[186cb75]17
[401a054]18    abac_credential_t **credentials = abac_context_query(ctx,
[7af34ed]19        opts.role, opts.principal,
[4e426c9]20        &success
[dc62c68]21    );
22
[4e426c9]23    if (success)
24        puts("success");
25
26    if (credentials != NULL)
27        for (i = 0; credentials[i] != NULL; ++i) {
28            cred = credentials[i];
29            printf("credential %s <- %s\n",
30                    abac_role_string(abac_credential_head(cred)),
[9a411d7]31                    abac_role_string(abac_credential_tail(cred))
[4e426c9]32                  );
33        }
34
[3c4fd68]35    abac_context_credentials_free(credentials);
[902d079]36
[390f749]37    abac_context_free(ctx);
[ea401bc]38
[7f25a67f]39    return 0;
40}
Note: See TracBrowser for help on using the repository browser.