source: libabac/abac_verifier.h @ 461541a

abac0-leakabac0-meimei-idmei-rt0-nmei_rt0tvf-new-xml
Last change on this file since 461541a was 461541a, checked in by Mei <mei@…>, 11 years ago

1) updated original rt0 to remove libstrongswan dependency

a) identity credential being made/accessed with openssl api calls

(X509/EVP_PKEY pem)

b) attribute credential being made/access via xmlsec1 (custom XML

structure)

2) refactored libcreddy into libabac and now one ABAC namespace for

libabac

3) added attribute_rule suboption to creddy's attribute as another way

to insert access rule

4) added some regression tests into example directory
5) updated some docs.

  • Property mode set to 100644
File size: 448 bytes
Line 
1#ifndef __VERIFIER_H__
2#define __VERIFIER_H__
3
4#include "abac.h"
5
6#include "uthash.h"
7
8void abac_verifier_init(void);
9void abac_verifier_deinit(void);
10
11int abac_verifier_load_id_file(char *filename);
12int abac_verifier_load_id_chunk(abac_chunk_t chunk);
13int abac_verifier_load_attribute_cert_file(char *filename, abac_list_t *clist);
14int abac_verifier_load_attribute_cert_chunk(abac_chunk_t chunk, abac_list_t  *clist);
15
16#endif /* __VERIFIER_H__ */
Note: See TracBrowser for help on using the repository browser.