summaryrefslogtreecommitdiff
path: root/sys/man
AgeCommit message (Collapse)Author
2016-02-01libsec: ecdsa client support for tlshand, cleanupscinap_lenrek
2016-01-19salsa(2): fix source referencecinap_lenrek
2016-01-19salsa(2): some formating fixescinap_lenrek
2016-01-19libsec: add salsa20 stream ciphercinap_lenrek
2016-01-19authsrv(6): fix arrowscinap_lenrek
2016-01-12fix manpage referencescinap_lenrek
2016-01-05authsrv(6): englishstanley lieber
2016-01-06auth: release dp9ik implementation and reentrant factotumcinap_lenrek
2016-01-03libmp: support for c-style base prefixes for strtomp(), octal supportcinap_lenrek
2015-12-25libsec: implement TLS-PSK for tlsClient()/tlsServer()cinap_lenrek
2015-12-22libjson: added printing support (thanks spew)cinap_lenrek
2015-12-16kernel: use uintptr for ibrk() return value (for base >2GB) and clarify ↵cinap_lenrek
segbrk(2)
2015-12-07fixed spelling error in 2c(1) for the axp entry.Matthew Veety
2015-12-07made sure that rcmain.local runs independent of the existence of ↵Matthew Veety
$home/lib/profile. Documented /rc/lib/rcmain, /rc/lib/rcmain.local, $home/lib/profile in rc(1) and the first two in namespace(4)
2015-12-06winwatch: l allows label changesaiju
2015-11-29fplot(1): fix typoBurnZeZ
2015-11-27fplot(1): add BUGS sectionstanley lieber
2015-11-26libsec: add chacha20 poly1305 aead, allow 64 bit iv's for chacha, add tsmemcmp()cinap_lenrek
chacha20 comes in two variants: ietf rfc7539, using 96 bit iv and 32 bit counter and draft-agl-tls-chacha20poly1305 using 64 bit iv and a 64 bit counter. so setupChachastate() now takes a ivlen argument which sets the mode. add ccpoly_encrypt()/ccpoly_decrypt() routines. to implement timing safe ccpoly_decrypt(), a constant time memcmp was needed, so adding tsmemcmp() to libsec.
2015-11-25rio: fix handling "resize" wctl for hidden windowscinap_lenrek
when the "resize" wctl was used on a hidden window, the window was put back on the screen, however, it was not removed from the hidden[] array so trying to hide the window again failed because whide() assumed it was already hidden. the fix is to not unhide the window, but preserve the hidden state, so windows can programmatically be reshaped and moved, but will remain hidden unless explicitely unhidden.
2015-11-22add mpc(1), extended precision code generatorcinap_lenrek
2015-11-22bootrc: remove usbwait hack, usbd/nusbrc are now synchronous by previous commitcinap_lenrek
2015-11-21libmp: initial attempt at constant time code, faster reductions for special ↵cinap_lenrek
primes (for ecc) introduce MPtimesafe flag to request time invariant computation disables normalization so significant digits are not leaked.
2015-10-31delkey(1): update man page to reflect recent changes.stanley lieber
2015-10-28mp(2): fix typo mnprand() -> mpnrand()cinap_lenrek
2015-10-22libsec: add chacha cipher (from charles forsyth)cinap_lenrek
2015-10-22libsec: add poly1305cinap_lenrek
2015-10-12lib9p: add reqqueuefreeaiju
2015-10-10aux/listen1: allow alternative namespace when running as user none with -n ↵cinap_lenrek
option
2015-09-29add timepic(1) and qr(1) manpagesaiju
2015-09-26qer(8): correct man page example (thanks, kenji)stanley lieber
2015-09-24utf(6), rune(2): document 21-bit runescinap_lenrek
2015-09-19ircrc: add -P option for server password (thanks, nick)stanley lieber
2015-09-06libc: remove privfree(), simplify privalloc()cinap_lenrek
2015-09-01libsec: remove flawed aes() digest and hmac_aes() implementations (thanks aiju)cinap_lenrek
2015-08-25libmp: add mpnrand() function to generate uniform random number 0 ≤ x < ncinap_lenrek
2015-08-22remove convkeys2cinap_lenrek
2015-08-21import(4): -o, -O flags gonecinap_lenrek
2015-08-21cpu, import: remove old9p supportcinap_lenrek
2015-08-21remove kfs references from manualcinap_lenrek
2015-08-21fshalt: remove kfs supportcinap_lenrek
2015-08-21mkfs(8): dont mention kfscinap_lenrek
2015-08-21disk/mkfs: rmeove kfs supportcinap_lenrek
2015-08-21introduce AES key into nvram and keyfscinap_lenrek
2015-08-19libauthsrv: generalize ticket service, not hardcoding ticket format and DES ↵cinap_lenrek
encryption this is in preparation for replacing DES ticket encryption with something better. but first need to make the code stop making assumptions. the wire encoding of the Ticket might be variable length with TICKETLEN just giving an upper bound. the details will be handled by libauthsrv _asgetticket() and _asgetresp() funciotns. the Authenticator and Passwordreq structures are encrypted with the random ticket key. The encryption schmeme will depend on the Ticket format used, so we pass the Ticket* structure instead of the DES key. introduce Authkey structure that will hold all the required cryptographic keys instead of passing DES key.
2015-08-16rio(4): document "delete" wctl message (thanks mischief)cinap_lenrek
2015-08-15import(4): clarify -E and -e optionscinap_lenrek
2015-08-10mount, srv: add -N flag to skip authentication and attach anonymously as "none"cinap_lenrek
2015-08-03libc: make atoi() not parse c-style octal and hex numberscinap_lenrek
interpreting octal breaks parsing of decimal numbers with leading zeros. the manpage listed this in the BUGS section, so we'r going to fix it as this just causes confusion as most callers of atoi() do not expect it.
2015-08-01bio(2): Bterm() closes filedescriptor for Bfdopen() allocated buffercinap_lenrek
2015-07-19stream(3): fix referencecinap_lenrek