chiark / gitweb /
Perly full service thing, before simple thing.
[chiark-tcl.git] / base / tables-examples.tct
1 Type hb                         Tcl_Obj *
2 Type hbv                        Tcl_Obj *
3
4 Table hbytes
5 Entries
6         raw2h
7                 binary  obj
8                 =>      hb
9         h2raw
10                 hex     hex
11                 =>      obj
12         prefix
13                 v       hbv
14                 ...
15         append
16                 v       hbv
17                 ...
18         concat
19                 v       hbv
20                 ...
21         unprepend
22                 v       hbv
23                 length  int
24                 =>      hb
25         unappend
26                 v       hbv
27                 length  int
28                 =>      hb
29         chopto
30                 v       hbv
31                 length  int
32                 =>      hb
33         pkcs5
34                 meth    enum(PadMethodInfo,padmethodinfos)
35                 ...
36         blockcipher
37                 encrypt charfrom("de")
38                 v       hbv
39                 alg     enum(BlockCipherAlgInfo,blockcipheralginfos)
40                 mode    enum(BlockCipherModeInfo,blockciphermodeinfos)
41                 ?iv     hb
42                 =>      hb
43         hash
44                 alg     enum(HashAlgInfo,hashalginfos)
45                 message hb
46                 =>      hb
47         hmac
48                 alg     enum(HashAlgInfo,hashalginfos)
49                 message hb
50                 key     hb
51                 maclen  int
52                 =>      hb
53
54 Table padmethodinfos
55         FuncArgs
56         Info
57                 int algname;
58 Entries