Assurance for Federated Identity Management


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Assurance for Federated Identity Management
# 1  
Old 03-23-2008
Assurance for Federated Identity Management

HPL-2008-25 Assurance for Federated Identity Management - Baldwin, Adrian; Casassa Mont, Marco; Beres, Yolanda; Shiu, Simon
Keyword(s): identity assurance, identity management, federation, privacy
Abstract: Federated Identity Management is an emerging paradigm that is rightly getting a lot of standardization and research attention. One aspect that is not receiving enough attention is assurance. Given the challenges enterprises faced trying to demonstrate appropriate control of their internal and monoli ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
smi_identity(3) 					SMI Management Information Library					   smi_identity(3)

NAME
smiGetIdentity, smiGetFirstIdentity, smiGetNextIdentity, smiGetParentIdentity, smiGetIdentityModule - SMI identity information routines SYNOPSIS
#include <smi.h> SmiIdentity *smiGetIdentity(SmiModule *smiModulePtr, char *name); SmiIdentity *smiGetFirstIdentity(SmiModule *smiModulePtr); SmiIdentity *smiGetNextIdentity(SmiIdentity *smiIdentityPtr); SmiIdentity *smiGetParentIdentity(SmiIdentity *smiIdentityPtr); SmiModule *smiGetIdentityModule(SmiType *smiIdentityPtr); typedef struct SmiIdentity { SmiIdentifier name; SmiDecl decl; SmiStatus status; char *description; char *reference; } SmiIdentity; DESCRIPTION
These functions retrieve information on a SMIng identity definition (SMIng). smiGetIdentity(SmiModule *smiModulePtr,char *name) returns a pointer to struct SmiIdentity for the identity with the given name in the given module(smiModulePtr), or NULL if the idenity with the given name does not exist smiGetFirstIdentity(SmiModule *smiModulePtr) and smiGetNextIdentity(SmiIdentity *smiIdentityPtr) are used to iterate through the identities of the module given by smiModulePtr. They return a pointer to struct SmiIdentity hat represents an identity or NULL if there are no identi- ties left in the module, or error has occurred. smiGetIdentityModule(SmiIdentity *smiIdentityPtr) returns a pointer to struct SmiModule, of the module containing the given identity. smiGetParentIdentity(SmiIdentity *smiIdentityPtr) returns a pointer to struct SmiIdentity pointing to the parent of the given smiIdenti- tyPtr, or NULL if the Identity is not derived. FILES
${prefix}/include/smi.h SMI library header file SEE ALSO
libsmi(3), smi_module(3), smi.h AUTHOR
(C) 2007 Kaloyan Kanev, Jacobs University, Germany <k.kanev@jacobs-university.de> February 10, 2007 smi_identity(3)