1tcl::transform::base64(nR)eflected/virtual channel suppotrctl::transform::base64(n)
2
3
4
5______________________________________________________________________________
6
8 tcl::transform::base64 - Base64 encoding transformation
9
11 package require Tcl 8.6
12
13 package require tcl::transform::core ?1?
14
15 package require tcl::transform::base64 ?1?
16
17 ::tcl::transform::base64 chan
18
19______________________________________________________________________________
20
22 The tcl::transform::base64 package provides a command creating a chan‐
23 nel transformation which base64 encodes data written to it, and decodes
24 the data read from it.
25
26 A related transformations in this module is tcl::transform::hex.
27
28 The internal TclOO class implementing the transform handler is a sub-
29 class of the tcl::transform::core framework.
30
32 ::tcl::transform::base64 chan
33 This command creates a base64 transformation on top of the chan‐
34 nel chan and returns its handle.
35
37 This document, and the package it describes, will undoubtedly contain
38 bugs and other problems. Please report such in the category virtchan‐
39 nel of the Tcllib Trackers [http://core.tcl.tk/tcllib/reportlist].
40 Please also report any ideas for enhancements you may have for either
41 package and/or documentation.
42
43 When proposing code changes, please provide unified diffs, i.e the out‐
44 put of diff -u.
45
46 Note further that attachments are strongly preferred over inlined
47 patches. Attachments can be made by going to the Edit form of the
48 ticket immediately after its creation, and then using the left-most
49 button in the secondary navigation bar.
50
52 base64, channel transformation, reflected channel, tip 230, tip 317,
53 transformation, virtual channel
54
56 Channels
57
59 Copyright (c) 2009 Andreas Kupries <andreas_kupries@users.sourceforge.net>
60
61
62
63
64tcllib 1 tcl::transform::base64(n)