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"
"log"
"github.com/rfjakob/gocryptfs/internal/cryptocore"
"github.com/rfjakob/gocryptfs/internal/contentenc"
"github.com/rfjakob/gocryptfs/internal/cryptocore"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
)
import "os"

View File

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

View File

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

View File

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

View File

@ -14,11 +14,11 @@ import (
"github.com/hanwen/go-fuse/fuse/nodefs"
"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/nametransform"
"github.com/rfjakob/gocryptfs/internal/contentenc"
"github.com/rfjakob/gocryptfs/internal/configfile"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
)
type FS struct {

View File

@ -10,9 +10,9 @@ import (
"github.com/hanwen/go-fuse/fuse"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
"github.com/rfjakob/gocryptfs/internal/cryptocore"
"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) {

View File

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

View File

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

View File

@ -1,9 +1,9 @@
package nametransform
import (
"fmt"
"crypto/aes"
"errors"
"fmt"
)
// 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/pathfs"
"github.com/rfjakob/gocryptfs/internal/fusefrontend"
"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/cryptocore"
"github.com/rfjakob/gocryptfs/internal/fusefrontend"
"github.com/rfjakob/gocryptfs/internal/nametransform"
"github.com/rfjakob/gocryptfs/internal/toggledlog"
)
const (