ad9b7e01a6
* Path encryption library * Use base64 instead of hex encoding * Prepend version number to encrypted path segments * Remove redundant var alias * Simplified returns * wrap errors
12 lines
221 B
Go
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")
|