| author | wenzelm | 
| Wed, 30 Aug 2023 17:02:40 +0200 | |
| changeset 78625 | 6aa964f52395 | 
| parent 76183 | 8089593a364a | 
| permissions | -rw-r--r-- | 
(* Title: Pure/General/base64.ML Author: Makarius Support for Base64 data encoding (via Isabelle/Scala). *) signature BASE64 = sig val decode: Bytes.T -> Bytes.T val encode: Bytes.T -> Bytes.T end; structure Base64: BASE64 = struct val decode = \<^scala>\<open>Base64.decode\<close>; val encode = \<^scala>\<open>Base64.encode\<close>; end;