Run go fmt

This commit is contained in:
Jakob Unterwurzacher 2016-02-06 20:23:36 +01:00
parent b0ee5258b1
commit c74772bc8d
13 changed files with 37 additions and 39 deletions

View File

@ -6,8 +6,8 @@ import (
"io/ioutil" "io/ioutil"
"log" "log"
"github.com/rfjakob/gocryptfs/internal/cryptocore"
"github.com/rfjakob/gocryptfs/internal/contentenc" "github.com/rfjakob/gocryptfs/internal/contentenc"
"github.com/rfjakob/gocryptfs/internal/cryptocore"
"github.com/rfjakob/gocryptfs/internal/toggledlog" "github.com/rfjakob/gocryptfs/internal/toggledlog"
) )
import "os" import "os"

View File

@ -3,8 +3,8 @@ package contentenc
// File content encryption / decryption // File content encryption / decryption
import ( import (
"encoding/binary"
"bytes" "bytes"
"encoding/binary"
"encoding/hex" "encoding/hex"
"errors" "errors"

View File

@ -30,7 +30,6 @@ func New(cc *cryptocore.CryptoCore, plainBS uint64) *ContentEnc {
} }
} }
func (be *ContentEnc) PlainBS() uint64 { func (be *ContentEnc) PlainBS() uint64 {
return be.plainBS return be.plainBS
} }

View File

@ -1,8 +1,8 @@
package cryptocore package cryptocore
import ( import (
"crypto/cipher"
"crypto/aes" "crypto/aes"
"crypto/cipher"
"fmt" "fmt"
) )

View File

@ -14,11 +14,11 @@ import (
"github.com/hanwen/go-fuse/fuse/nodefs" "github.com/hanwen/go-fuse/fuse/nodefs"
"github.com/hanwen/go-fuse/fuse/pathfs" "github.com/hanwen/go-fuse/fuse/pathfs"
"github.com/rfjakob/gocryptfs/internal/toggledlog" "github.com/rfjakob/gocryptfs/internal/configfile"
"github.com/rfjakob/gocryptfs/internal/contentenc"
"github.com/rfjakob/gocryptfs/internal/cryptocore" "github.com/rfjakob/gocryptfs/internal/cryptocore"
"github.com/rfjakob/gocryptfs/internal/nametransform" "github.com/rfjakob/gocryptfs/internal/nametransform"
"github.com/rfjakob/gocryptfs/internal/contentenc" "github.com/rfjakob/gocryptfs/internal/toggledlog"
"github.com/rfjakob/gocryptfs/internal/configfile"
) )
type FS struct { type FS struct {

View File

@ -10,9 +10,9 @@ import (
"github.com/hanwen/go-fuse/fuse" "github.com/hanwen/go-fuse/fuse"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
"github.com/rfjakob/gocryptfs/internal/cryptocore" "github.com/rfjakob/gocryptfs/internal/cryptocore"
"github.com/rfjakob/gocryptfs/internal/nametransform" "github.com/rfjakob/gocryptfs/internal/nametransform"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
) )
func (fs *FS) Mkdir(relPath string, mode uint32, context *fuse.Context) (code fuse.Status) { func (fs *FS) Mkdir(relPath string, mode uint32, context *fuse.Context) (code fuse.Status) {

View File

@ -60,4 +60,3 @@ func (n *NameTransform) encryptName(plainName string, iv []byte) (cipherName64 s
cipherName64 = base64.URLEncoding.EncodeToString(bin) cipherName64 = base64.URLEncoding.EncodeToString(bin)
return cipherName64 return cipherName64
} }

View File

@ -8,8 +8,8 @@ import (
"strings" "strings"
"sync" "sync"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
"github.com/rfjakob/gocryptfs/internal/cryptocore" "github.com/rfjakob/gocryptfs/internal/cryptocore"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
) )
const ( const (

View File

@ -1,9 +1,9 @@
package nametransform package nametransform
import ( import (
"fmt"
"crypto/aes" "crypto/aes"
"errors" "errors"
"fmt"
) )
// pad16 - pad data to AES block size (=16 byte) using standard PKCS#7 padding // pad16 - pad data to AES block size (=16 byte) using standard PKCS#7 padding

View File

@ -20,12 +20,12 @@ import (
"github.com/hanwen/go-fuse/fuse/nodefs" "github.com/hanwen/go-fuse/fuse/nodefs"
"github.com/hanwen/go-fuse/fuse/pathfs" "github.com/hanwen/go-fuse/fuse/pathfs"
"github.com/rfjakob/gocryptfs/internal/fusefrontend"
"github.com/rfjakob/gocryptfs/internal/configfile" "github.com/rfjakob/gocryptfs/internal/configfile"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
"github.com/rfjakob/gocryptfs/internal/nametransform"
"github.com/rfjakob/gocryptfs/internal/contentenc" "github.com/rfjakob/gocryptfs/internal/contentenc"
"github.com/rfjakob/gocryptfs/internal/cryptocore" "github.com/rfjakob/gocryptfs/internal/cryptocore"
"github.com/rfjakob/gocryptfs/internal/fusefrontend"
"github.com/rfjakob/gocryptfs/internal/nametransform"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
) )
const ( const (