blob: 84c3d1557c9f13361394ff17b5a41181c6b4dca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <u.h>
#include <libc.h>
#include <authsrv.h>
#include <bio.h>
#include "authcmdlib.h"
static int
getkey(char *authkey)
{
Nvrsafe safe;
if(readnvram(&safe, 0) < 0)
return -1;
memmove(authkey, safe.machkey, DESKEYLEN);
memset(&safe, 0, sizeof safe);
return 0;
}
int
getauthkey(Authkey *authkey)
{
memset(authkey, 0, sizeof(Authkey));
if(getkey(authkey->des) == 0)
return 1;
print("can't read NVRAM, please enter machine key\n");
getpass(authkey, nil, 0, 1);
return 1;
}
|