X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=user_list.h;h=68fa21b2a0185a79bcabc0136d2152595711756c;hp=cce577a60331ae955a21a774f016d2dc032dc623;hb=c387b216b5fd3c944053e1bba024815719e9a0d9;hpb=a365b8263a0d7a1673699bdf454677c95b38eb95 diff --git a/user_list.h b/user_list.h index cce577a6..68fa21b2 100644 --- a/user_list.h +++ b/user_list.h @@ -20,13 +20,13 @@ enum {AFS_READ = 1, AFS_WRITE = 2, VSS_READ = 4, VSS_WRITE = 8}; * data needed to authenticate the user */ struct user { - /** the position of this user in the list of users */ + /** The position of this user in the list of users. */ struct list_head node; - /** the username */ + /** The username. */ char *name; - /** the public RSA key */ - RSA *rsa; - /** the privileges that this user has */ + /** The public key. */ + struct asymmetric_key *pubkey; + /** The privileges of this user. */ unsigned int perms; };