84533b5549d82e0de89c285f118b182a3e1e53ec
[crypto.git] / CHANGES
1 Sat Jul 15 15:33:48 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
2
3         * Added command lagging support in server. Client may execute
4           commands now only once in two seconds.
5
6 Thu Jul 13 22:10:21 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
7
8         * Optimized packet reception. MAC computation and checking is now
9           also more optimized.  A lot previously duplicated code is now
10           used as generic by both client and server.
11
12         * Fixed key pair generation in clientutil.c
13
14 Wed Jul 12 18:28:07 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
15
16         * Added into lib/silccore/silcbufutil.[ch] new function;
17           silc_buffer_realloc.
18
19         * Moved generic packet sending/encryption functions to 
20           lib/silccore/silcpacket.[ch] from client and server.  Some
21           rewriting of the functions.
22
23         * Moved all generic packet reception/decryption functions to
24           lib/silccore/silcpacket.[ch] from client and server.  The
25           packet processing is now much cleaner in both client and server.
26           These were major changes in both client and server.
27
28         * Created many common functions in server to do packet sending.
29           Previously code were duplicated a lot, this has been removed
30           with these changes.
31
32 Tue Jul 11 20:27:26 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
33
34         * Rewrote major parts of the ID cache system.  Don't know 
35           whether it is better now or not but at least the API is more
36           cleaner now.
37
38         * Major rewrite on ID cache stuff on client because of the ID
39           cache API changes.  Added idlist.c to client.
40
41         * Also major rewrite on ID cache stuff on server as well.
42           Major rewrite of idlist.[ch]. SilcXXXList's are now named
43           SilcXXXEntry's.  We won't keep anymore idlist specific pointers
44           in hand, instead they are all put into the ID cache system now.
45           All server_idlist_* routines uses ID cache now instead of
46           traversing its own lists (those lists does not exist anymore).
47           SilcIDList though still exists.  Also, SilcXXXEntry's are
48           now pointers.
49
50 Sun Jul  9 15:19:24 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
51
52         * Finally made the SKE implementation compliant to the protocol
53           specification.  All mp integers are now binary encoded as
54           opposed being HEX encoded.
55
56         * Added lib/silcmath/mpbin.[ch].  Encoding mp intergers to and
57           from binary data.
58
59         * Added into lib/silccore/silcutil.[ch] PEM encoding/decoding
60           functions: silc_[encode/decode]_pem.  Also added function
61           silc_encode_pem_file to PEM encode with newlines ('\n') for
62           saving into a file.
63
64         * SILC public keys are now encoded either PEM or binary.  Same
65           option is for private keys as well.  By default private keys
66           are binary encoded and public keys PEM encoded.  Silly HEX
67           encoding were removed.
68
69         * Added into lib/silccrypt/silchash.[ch] silc_hash_fingerprint
70           function to create fingerprints.
71
72         * Fixed a bug in SHA1; does not change the original data anymore.
73
74         * Partly implemented INFO command on client and server side.
75           Fixed CLEAR command.  Changes to SERVER command; show current
76           server(s) when giving command without arguments.  Added
77           VERSION command to client.
78
79         * Added check to server that unregistered connections cannot
80           execute commands (unless it is specificly allowed).
81
82 Thu Jul  6 18:12:24 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
83
84         * Fixed screen refresh.
85
86         * Fixed channel joining bug from client.  On some circumstances
87           client tried to join to a channel it had already joined.
88
89         * Added public key verification process into client's protocol.c.
90           The client now verifies the public key from user and saves
91           it into ~./silc/serverkeys/ directory. 
92
93           Added into: clientutil.[ch]: silc_client_verify_server_key.
94
95         * Changed SKE protocol's silc_ske_initiator_finish function
96           to accept callback function that verifies the received public
97           key.  Removed old silc_ske_verify_public_key function.
98
99 Wed Jul  5 19:19:02 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
100
101         * Added into silcpkcs[ch]: silc_pkcs_public_key[_data]_set and
102           silc_pkcs_private_key[_data]_set.
103
104         * Made the password and public authentication more cleaner in
105           server's protocol.c.
106
107         * Removed historic and obsolete protocol `channel_auth' from
108           both client and server.
109
110         * Removed wrong way of sending command status messages from
111           server to client in server's command.c.  The old way violated
112           protocol specification.  
113
114           Changes to silccore/silccommand.[ch]: removed
115           silc_command_encode_status_payload -> not needed anymore,
116           changed silc_command_encode_payload_va to accept extra
117           argument on variable argument list.  The argument type must
118           now be provided to the function.  Also, added new function:
119           silc_command_encode_reply_payload_va which is same as
120           normal command_encode_payload_va except command status type
121           is provided as extra argument.
122
123 Tue Jul  4 18:26:39 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
124
125         * Added ~./silc directory handling.  The directory includes the
126           public and private keys for the client.
127
128           Added silc_client_check_silc_dir, silc_client_create_identifier
129           and silc_client_load_keys.
130
131         * Implemented SILC protocol compliant public key.  Added public
132           and private key saving to and loading from files.
133
134           Added into silcpkcs.[ch]: silc_pkcs_encode_identifier,
135           silc_pkcs_public_key_encode[_data], silc_pkcs_public_key_decode,
136           silc_pkcs_private_key_encode[_data], silc_pkcs_private_key_decode,
137           silc_pkcs_public_key_alloc, silc_pkcs_public_key_free,
138           silc_pkcs_private_key_alloc and silc_pkcs_private_key_free.
139
140           Implemented: silc_pkcs_save_[public/private]_key[_data] and
141           silc_pkcs_load_[public/private]_key.
142
143 Mon Jul  3 18:51:27 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
144
145         * Added silc_server_get_route (route.[ch]) to get connection
146           data for the fastest route for given ID.
147
148         * Implemented INVITE command on client and server.  The command
149           were re-defined in the SILC Protocol Specification and the
150           implementation now complies with the specification.
151
152         * Implemented PING command on client and server.
153
154         * Implemented NAMES command on client and server.  The server side
155           supports currently only normal server not router server yet.
156           Some changes to NAMES definition in SILC protocol specification.
157
158 Sun Jul  2 18:23:01 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
159
160         * Implemented LEAVE command on client and server.
161
162         * Previously deprecated SILC_PACKET_FORWARDED flag is now in use 
163           again.  This change was made to the protocol as well.  Server
164           should not violate the protocol specification anymore.
165
166 Fri Jun 30 14:03:26 EEST 2000  Pekka Riikonen <priikone@poseidon.pspt.fi>
167
168         * Added SOCKS4 and SOCKS5 support to SILC client.  SOCKS5
169           was tested.  SOCKS4 was not but should work anyway.