diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-10-24 20:56:11 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-10-24 20:56:11 +0200 |
commit | 234137bce39a03eab02044234c8f970498ccc5b0 (patch) | |
tree | 85e2d2707d34ac7f19ee0f7c6b23ea309701b470 /sys/man/8 | |
parent | f3feafc476ff108231dd6e0e3ac3cd420a62a81c (diff) |
fix bugs and cleanup cryptsetup code
devfs:
- fix memory leak in devfs leaking the aes key
- allocate aes-xts cipher state in secure memory
- actually check if the hexkey got fully parsed
cryptsetup:
- get rid of stupid "type YES" prompt
- use genrandom() to generate salts and keys
- rewrite cryptsetup to use common pbkdf2 and readcons routines
- fix alot of error handling and simplify the code
- move cryptsetup command to disk/cryptsetup
- update cryptsetup(8) manual page
Diffstat (limited to 'sys/man/8')
-rw-r--r-- | sys/man/8/cryptsetup | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/man/8/cryptsetup b/sys/man/8/cryptsetup index f6cfb2a3b..9dcca4776 100644 --- a/sys/man/8/cryptsetup +++ b/sys/man/8/cryptsetup @@ -2,15 +2,15 @@ .SH NAME cryptsetup \- setup encrypted partition .SH SYNOPSIS -.B cryptsetup +.B disk/cryptsetup .B -f .I files ... .br -.B cryptsetup +.B disk/cryptsetup .B -o .I files ... .br -.B cryptsetup +.B disk/cryptsetup .B -i .I files ... .SH DESCRIPTION @@ -49,7 +49,7 @@ is the last path element of the .I files argument. .SH SOURCE -.B /sys/src/cmd/cryptsetup +.B /sys/src/cmd/disk/cryptsetup.c .SH SEE ALSO .IR aes (2) , .IR fs (3) |