Sign in
pigweed
/
third_party
/
github
/
aspect-build
/
bazel-lib
/
refs/heads/upstream/main
/
.
/
lib
/
base64.bzl
blob: 42cec2f359d12afeffcd8cabfdcb0eade8682b99 [
file
] [
log
] [
blame
] [
edit
]
"""Utility functions for encoding and decoding strings with base64.
See https://en.wikipedia.org/wiki/Base64.
"""
load
(
"//lib/private:base64.bzl"
,
_decode
=
"decode"
,
_encode
=
"encode"
)
base64
=
struct
(
decode
=
_decode
,
encode
=
_encode
,
)