Add godoc comments to all internal packages
This commit is contained in:
parent
a36b4c1b43
commit
e8a234f658
@ -1,3 +1,5 @@
|
|||||||
|
// Package configfile reads and writes gocryptfs.conf does the key
|
||||||
|
// wrapping.
|
||||||
package configfile
|
package configfile
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
|
// Package contentenc encrypts and decrypts file blocks.
|
||||||
package contentenc
|
package contentenc
|
||||||
|
|
||||||
// File content encryption / decryption
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/binary"
|
"encoding/binary"
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// Package cryptocore wraps OpenSSL and Go GCM crypto and provides
|
||||||
|
// a nonce generator.
|
||||||
package cryptocore
|
package cryptocore
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// Package fusefrontend interfaces directly with the go-fuse library.
|
||||||
package fusefrontend
|
package fusefrontend
|
||||||
|
|
||||||
// FUSE operations on paths
|
// FUSE operations on paths
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
|
// Package namtransforms encrypts and decrypts filenames.
|
||||||
package nametransform
|
package nametransform
|
||||||
|
|
||||||
// Filename encryption / decryption functions
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/aes"
|
"crypto/aes"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
|
@ -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
|
package prefer_openssl
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// Package readpassword reads a password from the terminal of from stdin.
|
||||||
package readpassword
|
package readpassword
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// Package syscallcompat wraps Linux-specific syscalls.
|
||||||
package syscallcompat
|
package syscallcompat
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// Package tlog is a "toggled logger" that can be enabled and disabled and
|
||||||
|
// provides coloring.
|
||||||
package tlog
|
package tlog
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
Loading…
Reference in New Issue
Block a user