Add godoc comments to all internal packages

This commit is contained in:
Jakob Unterwurzacher 2016-07-06 21:51:25 +02:00
parent a36b4c1b43
commit e8a234f658
9 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,5 @@
// Package configfile reads and writes gocryptfs.conf does the key
// wrapping.
package configfile
import (

View File

@ -1,7 +1,6 @@
// Package contentenc encrypts and decrypts file blocks.
package contentenc
// File content encryption / decryption
import (
"bytes"
"encoding/binary"

View File

@ -1,3 +1,5 @@
// Package cryptocore wraps OpenSSL and Go GCM crypto and provides
// a nonce generator.
package cryptocore
import (

View File

@ -1,3 +1,4 @@
// Package fusefrontend interfaces directly with the go-fuse library.
package fusefrontend
// FUSE operations on paths

View File

@ -1,7 +1,6 @@
// Package namtransforms encrypts and decrypts filenames.
package nametransform
// Filename encryption / decryption functions
import (
"crypto/aes"
"encoding/base64"

View File

@ -1,3 +1,5 @@
// Package prefer_openssl tries to determine if we should prefer openssl
// on the platform we are running on.
package prefer_openssl
import (

View File

@ -1,3 +1,4 @@
// Package readpassword reads a password from the terminal of from stdin.
package readpassword
import (

View File

@ -1,3 +1,4 @@
// Package syscallcompat wraps Linux-specific syscalls.
package syscallcompat
import (

View File

@ -1,3 +1,5 @@
// Package tlog is a "toggled logger" that can be enabled and disabled and
// provides coloring.
package tlog
import (