base64

package
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 11, 2026 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Module = module.NewBuiltin().
	Func("encode(b bytes) (s string)			returns the base64 encoding of src", base64.StdEncoding.EncodeToString).
	Func("decode(s string) (b bytes)			returns the bytes represented by the base64 string s", base64.StdEncoding.DecodeString).
	Func("raw_encode(b bytes) (s string)		returns the unpadded base64 encoding of src", base64.RawStdEncoding.EncodeToString).
	Func("raw_decode(s string) (b bytes)		returns the bytes represented by the unpadded base64 string s", base64.RawStdEncoding.DecodeString).
	Func("url_encode(b bytes) (s string)		returns the base64 encoding of src using URL and Filename safe alphabet", base64.URLEncoding.EncodeToString).
	Func("url_decode(s string) (b bytes)		returns the bytes represented by the base64 URL and Filename safe string s", base64.URLEncoding.DecodeString).
	Func("raw_url_encode(b bytes) (s string)	returns the unpadded base64 encoding of src using URL and Filename safe alphabet", base64.RawURLEncoding.EncodeToString).
	Func("raw_url_decode(s string) (b bytes)	returns the bytes represented by the unpadded base64 URL and Filename safe string s", base64.RawURLEncoding.DecodeString)

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL