source: creddy/roles.c @ 3ba7805

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

creddy verify, all creddy commands done

  • Property mode set to 100644
File size: 445 bytes
Line 
1#include "creddy.h"
2
3#include <credentials/certificates/ac.h>
4
5void roles_main(options_t *opts) {
6    if (opts->cert == NULL)
7        usage(opts);
8
9    certificate_t *cert = attr_cert_from_file(opts->cert);
10
11    ac_t *ac = (ac_t *)cert;
12    ietf_attributes_t *attr = ac->get_groups(ac);
13    if (attr == NULL)
14        errx(1, "Couldn't get attributes from cert");
15
16    puts(attr->get_string(attr));
17
18    DESTROY_IF(attr);
19    DESTROY_IF(cert);
20}
Note: See TracBrowser for help on using the repository browser.