mirror of
https://github.com/fumiama/go-nd-portal.git
synced 2026-06-10 19:40:23 +08:00
13 lines
312 B
Go
13 lines
312 B
Go
// Package base64 with customized talbe
|
|
package base64
|
|
|
|
import b64 "encoding/base64"
|
|
|
|
const (
|
|
// PortalBase64Table customized order
|
|
PortalBase64Table = "LVoJPiCN2R8G90yg+hmFHuacZ1OWMnrsSTXkYpUq/3dlbfKwv6xztjI7DeBE45QA"
|
|
)
|
|
|
|
// Base64Encoding of customized
|
|
var Base64Encoding = b64.NewEncoding(PortalBase64Table)
|