File: const.go

package info (click to toggle)
golang-github-go-crypt-crypt 0.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 516 kB
  • sloc: makefile: 4
file content (15 lines) | stat: -rw-r--r-- 440 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package plaintext

const (
	// EncodingFmt is the encoding format for this algorithm.
	EncodingFmt = "$%s$%s"

	// AlgName is the name for this algorithm.
	AlgName = "plaintext"

	// AlgIdentifierPlainText is the identifier used in encoded plaintext variants of this algorithm.
	AlgIdentifierPlainText = AlgName

	// AlgIdentifierBase64 is the identifier used in encoded base64 variants of this algorithm.
	AlgIdentifierBase64 = "base64"
)