| author | Fabian Huch <huch@in.tum.de> |
| Fri, 05 Jul 2024 10:38:17 +0200 | |
| changeset 80502 | db89ef6a8a42 |
| 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;