diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-08-21 03:16:50 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-08-21 03:16:50 +0200 |
commit | c3487a4b49b6988aad0e340ad9e986e4549b9317 (patch) | |
tree | 7c0c17cef490f751d305e1689038ddc529ffe021 /sys/src/cmd/auth/authcmdlib.h | |
parent | 63b18e79252845d09abbad44672eabd9233a911b (diff) |
authsrv: more aes key stuff
Diffstat (limited to 'sys/src/cmd/auth/authcmdlib.h')
-rw-r--r-- | sys/src/cmd/auth/authcmdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/cmd/auth/authcmdlib.h b/sys/src/cmd/auth/authcmdlib.h index b8e31ee13..1792e1a07 100644 --- a/sys/src/cmd/auth/authcmdlib.h +++ b/sys/src/cmd/auth/authcmdlib.h @@ -41,6 +41,7 @@ void error(char*, ...); void fail(char*); int findkey(char*, char*, Authkey*); char* finddeskey(char*, char*, char*); +uchar* findaeskey(char*, char*, uchar*); char* findsecret(char*, char*, char*); int getauthkey(Authkey*); long getexpiration(char *db, char *u); @@ -61,6 +62,7 @@ long readn(int, void*, long); char* secureidcheck(char*, char*); int setkey(char*, char*, Authkey*); char* setdeskey(char*, char*, char*); +uchar* setaeskey(char*, char*, uchar*); char* setsecret(char*, char*, char*); int smartcheck(void*, long, char*); void succeed(char*); |