storj/pkg/paths/common.go
Kaloyan Raev ad9b7e01a6
Path encryption library (#61)
* Path encryption library

* Use base64 instead of hex encoding

* Prepend version number to encrypted path segments

* Remove redundant var alias

* Simplified returns

* wrap errors
2018-05-30 18:33:27 +03:00

12 lines
221 B
Go

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package paths
import (
"github.com/zeebo/errs"
)
// Error is the errs class of standard path errors
var Error = errs.Class("paths error")