diff options
Diffstat (limited to 'internal/nametransform')
| -rw-r--r-- | internal/nametransform/longnames.go | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/internal/nametransform/longnames.go b/internal/nametransform/longnames.go index cf7f34c..e61e21b 100644 --- a/internal/nametransform/longnames.go +++ b/internal/nametransform/longnames.go @@ -31,9 +31,14 @@ func HashLongName(name string) string {  // Values returned by IsLongName  const ( -	LongNameContent  = iota +	// File that stores the file content. +	// Example: gocryptfs.longname.URrM8kgxTKYMgCk4hKk7RO9Lcfr30XQof4L_5bD9Iro= +	LongNameContent = iota +	// File that stores the full encrypted filename. +	// Example: gocryptfs.longname.URrM8kgxTKYMgCk4hKk7RO9Lcfr30XQof4L_5bD9Iro=.name  	LongNameFilename = iota -	LongNameNone     = iota +	// Example: i1bpTaVLZq7sRNA9mL_2Ig== +	LongNameNone = iota  )  // NameType - detect if cName is | 
