mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

* alphabet * another * associated * avoiding * base * because * constructors * defining * deterministic * directly * endlessly * entity * function * indefinitely * initial * interpreter * into * modifying * negotiate * nonexistent * observations * occasional * omission * orphaned * overridden * passing * primitive * produces * reassembly * repository * restore * shouldn't * something * statement * the * therefore * transferred * uninitialized * unsuccessful Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
16 lines
628 B
Text
16 lines
628 B
Text
# @TEST-EXEC: zeek -b %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
global default_alphabet: string = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
|
|
|
global my_alphabet: string = "!#$%&/(),-.:;<>@[]^ `_{|}~abcdefghijklmnopqrstuvwxyz0123456789+?";
|
|
|
|
print decode_base64("YnJv");
|
|
print decode_base64("YnJv", default_alphabet);
|
|
print decode_base64("YnJv", ""); # should use default alphabet
|
|
print decode_base64("}n-v", my_alphabet);
|
|
|
|
print decode_base64("YnJv");
|
|
print decode_base64("YnJv", default_alphabet);
|
|
print decode_base64("YnJv", ""); # should use default alphabet
|
|
print decode_base64("}n-v", my_alphabet);
|