45837b367d504cfbbda33628a5812d9eea232596
[silc.git] / lib / silcske / silcske.h
1 /*
2
3   silcske.h
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2000 - 2007 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 /****h* silcske/SILC SKE Interface
21  *
22  * DESCRIPTION
23  *
24  * The SILC Key Exchange (SKE) protocol interface. The SKE protocol
25  * is used to negotiate secret key material between two parties, to be used
26  * as session key or some other key. For example, when client connects to
27  * server SKE is performed to exchange public keys, and to generate the key
28  * that is then used as session key. Two clients can execute SKE as well
29  * two create secret key material for securing for example file transfer
30  * stream. This SKE implementation provides easy interface for application
31  * that wants to use SKE.
32  *
33  ***/
34
35 #ifndef SILCSKE_H
36 #define SILCSKE_H
37
38 /* Forward declarations */
39 typedef struct SilcSKECallbacksStruct *SilcSKECallbacks;
40 typedef struct SilcSKEStruct *SilcSKE;
41
42 /****d* silcske/SilcSKEAPI/SilcSKEStatus
43  *
44  * NAME
45  *
46  *    typedef enum { ... } SilcSKEStatus;
47  *
48  * DESCRIPTION
49  *
50  *    Status types returned in SKE callbacks. This tell the status of
51  *    the SKE session, and if an error occurred. Application can map the
52  *    status to human readable string with silc_ske_map_status function.
53  *
54  * SOURCE
55  */
56 typedef enum {
57   /* These are defined by the protocol */
58   SILC_SKE_STATUS_OK                     = 0,  /* No error */
59   SILC_SKE_STATUS_ERROR                  = 1,  /* Unknown error */
60   SILC_SKE_STATUS_BAD_PAYLOAD            = 2,  /* Malformed payload */
61   SILC_SKE_STATUS_UNKNOWN_GROUP          = 3,  /* Unsupported DH group */
62   SILC_SKE_STATUS_UNKNOWN_CIPHER         = 4,  /* Unsupported cipher */
63   SILC_SKE_STATUS_UNKNOWN_PKCS           = 5,  /* Unsupported PKCS algorithm */
64   SILC_SKE_STATUS_UNKNOWN_HASH_FUNCTION  = 6,  /* Unsupported hash function */
65   SILC_SKE_STATUS_UNKNOWN_HMAC           = 7,  /* Unsupported HMAC */
66   SILC_SKE_STATUS_UNSUPPORTED_PUBLIC_KEY = 8,  /* Unsupported/not trusted PK */
67   SILC_SKE_STATUS_INCORRECT_SIGNATURE    = 9,  /* Incorrect signature */
68   SILC_SKE_STATUS_BAD_VERSION            = 10, /* Unsupported version */
69   SILC_SKE_STATUS_INVALID_COOKIE         = 11, /* Cookie was modified */
70
71   /* Implementation specific status types */
72   SILC_SKE_STATUS_PUBLIC_KEY_NOT_PROVIDED,     /* Remote did not send PK */
73   SILC_SKE_STATUS_BAD_RESERVED_FIELD,          /* Reserved field was not 0 */
74   SILC_SKE_STATUS_BAD_PAYLOAD_LENGTH,          /* Payload includes garbage */
75   SILC_SKE_STATUS_SIGNATURE_ERROR,             /* Error computing signature */
76   SILC_SKE_STATUS_OUT_OF_MEMORY,               /* System out of memory */
77   SILC_SKE_STATUS_TIMEOUT,                     /* Timeout */
78 } SilcSKEStatus;
79 /***/
80
81 #include "silcske_groups.h"
82 #include "silcske_payload.h"
83
84 /****d* silcske/SilcSKEAPI/SilcSKESecurityPropertyFlag
85  *
86  * NAME
87  *
88  *    typedef enum { ... } SilcSKESecurityPropertyFlag
89  *
90  * DESCRIPTION
91  *
92  *    SKE security property flags as defined by the SK protocol.
93  *
94  * SOURCE
95  */
96 typedef enum {
97   SILC_SKE_SP_FLAG_NONE         = 0x00,  /* No flags */
98   SILC_SKE_SP_FLAG_IV_INCLUDED  = 0x01,  /* IV included in packet */
99   SILC_SKE_SP_FLAG_PFS          = 0x02,  /* Perfect Forward Secrecy */
100   SILC_SKE_SP_FLAG_MUTUAL       = 0x04,  /* Mutual authentication */
101 } SilcSKESecurityPropertyFlag;
102 /***/
103
104 /****s* silcske/SilcSKEAPI/SilcSKESecurityProperties
105  *
106  * NAME
107  *
108  *    typedef struct { ... } *SilcSKESecurityProperties;
109  *
110  * DESCRIPTION
111  *
112  *    Security Properties negotiated between key exchange parties. This
113  *    structure is filled from the Key Exchange Start Payload which is used
114  *    to negotiate what security properties must be used in the
115  *    communication.
116  *
117  * SOURCE
118  */
119 typedef struct SilcSKESecurityPropertiesStruct {
120   SilcSKESecurityPropertyFlag flags;     /* Flags */
121   SilcSKEDiffieHellmanGroup group;       /* Selected Diffie Hellman group */
122   SilcCipher cipher;                     /* Selected cipher */
123   SilcHmac hmac;                         /* Selected HMAC */
124   SilcHash hash;                         /* Selected hash algorithm */
125   SilcPublicKey public_key;              /* Remote public key */
126   SilcUInt16 remote_port;                /* Remote port, set when IV Included
127                                             set and using UDP/IP */
128 } *SilcSKESecurityProperties;
129 /***/
130
131 /****s* silcske/SilcSKEAPI/SilcSKEKeyMaterial
132  *
133  * NAME
134  *
135  *    typedef struct { ... } *SilcSKEKeyMaterial;
136  *
137  * DESCRIPTION
138  *
139  *    This is the key material structure, and is passed as argument by the
140  *    application to silc_ske_process_key_material_data function. It includes
141  *    the processed key material which can be used as SILC session keys.
142  *
143  * SOURCE
144  */
145 typedef struct SilcSKEKeyMaterialStruct {
146   unsigned char *send_iv;
147   unsigned char *receive_iv;
148   SilcUInt32 iv_len;
149   unsigned char *send_enc_key;
150   unsigned char *receive_enc_key;
151   SilcUInt32 enc_key_len;              /* Key length in bits */
152   unsigned char *send_hmac_key;
153   unsigned char *receive_hmac_key;
154   SilcUInt32 hmac_key_len;             /* Key length in bytes */
155 } *SilcSKEKeyMaterial;
156 /***/
157
158 /****s* silcske/SilcSKEAPI/SilcSKERekeyMaterial
159  *
160  * NAME
161  *
162  *    typedef struct { ... } *SilcSKERekeyMaterial;
163  *
164  * DESCRIPTION
165  *
166  *    This context is returned after key exchange protocol to application
167  *    in the completion callback.  Application may save it and use it later
168  *    to perform the rekey with silc_ske_rekey_initiator and/or
169  *    silc_ske_rekey_responder functions.  If application does not
170  *    need the context, it may free it with silc_ske_free_rekey_material
171  *    function.
172  *
173  ***/
174 typedef struct SilcSKERekeyMaterialStruct {
175   unsigned char *send_enc_key;
176   char *hash;
177   unsigned int enc_key_len  : 23;
178   unsigned int ske_group    : 8;
179   unsigned int pfs          : 1;
180 } *SilcSKERekeyMaterial;
181
182 /****s* silcske/SilcSKEAPI/SilcSKEParams
183  *
184  * NAME
185  *
186  *    typedef struct { ... } *SilcSKEParams, SilcSKEParamsStruct;
187  *
188  * DESCRIPTION
189  *
190  *    SKE parameters structure.  This structure is given as argument to
191  *    silc_ske_initiator and silc_ske_responder functions.
192  *
193  * SOURCE
194  */
195 typedef struct SilcSKEParamsObject {
196   /* The SKE version string that is sent to the remote end.  This field
197      must be set.  Caller must free the pointer. */
198   char *version;
199
200   /* Security property flags.  When initiator sets these it requests them
201      from the responder.  Responder may set here the flags it supports
202      and wants to enforce for the initiator. */
203   SilcSKESecurityPropertyFlag flags;
204
205   /* SILC Session port when using UDP/IP and SILC_SKE_SP_FLAG_IV_INCLUDED
206      flag.  It is the port the remote will use as SILC session port after
207      the key exchange protocol.  Ignored without SILC_SKE_SP_FLAG_IV_INCLUDED
208      flag. */
209   SilcUInt16 session_port;
210
211   /* Key exchange timeout in seconds.  If key exchange is not completed in
212      this time it will timeout.  If not specified (zero), default value
213      (30 seconds) will be used. */
214   SilcUInt16 timeout_secs;
215 } *SilcSKEParams, SilcSKEParamsStruct;
216 /***/
217
218 /****d* silcske/SilcSKEAPI/SilcSKEPKType
219  *
220  * NAME
221  *
222  *    typedef enum { ... } SilcSKEPKType;
223  *
224  * DESCRIPTION
225  *
226  *    Public key and certificate types defined by the SKE protocol.
227  *
228  * SOURCE
229  */
230 typedef enum {
231   SILC_SKE_PK_TYPE_SILC    = 1, /* SILC Public Key, mandatory */
232   SILC_SKE_PK_TYPE_SSH2    = 2, /* SSH2 Public key, not supported */
233   SILC_SKE_PK_TYPE_X509V3  = 3, /* X.509v3 certificate, not supported */
234   SILC_SKE_PK_TYPE_OPENPGP = 4, /* OpenPGP certificate, not supported */
235   SILC_SKE_PK_TYPE_SPKI    = 5  /* SPKI certificate, not supported */
236 } SilcSKEPKType;
237 /***/
238
239 /****f* silcske/SilcSKEAPI/SilcSKEVerifyCbCompletion
240  *
241  * SYNOPSIS
242  *
243  *    typedef void (*SilcSKEVerifyCbCompletion)(SilcSKE ske,
244  *                                              SilcSKEStatus status,
245  *                                              void *context);
246  *
247  * DESCRIPTION
248  *
249  *    Completion callback that will be called when the public key
250  *    has been verified.  The `status' will indicate whether the public
251  *    key were trusted or not.
252  *
253  ***/
254 typedef void (*SilcSKEVerifyCbCompletion)(SilcSKE ske,
255                                           SilcSKEStatus status,
256                                           void *context);
257
258 /****f* silcske/SilcSKEAPI/SilcSKEVerifyCb
259  *
260  * SYNOPSIS
261  *
262  *    typedef void (*SilcSKEVerifyCb)(SilcSKE ske,
263  *                                    SilcPublicKey public_key,
264  *                                    void *context,
265  *                                    SilcSKEVerifyCbCompletion completion,
266  *                                    void *completion_context);
267  *
268  * DESCRIPTION
269  *
270  *    Callback function used to verify the received public key or certificate.
271  *    The verification process is most likely asynchronous.  That's why the
272  *    application must call the `completion' callback when the verification
273  *    process has been completed.  The `context' is the context given as
274  *    arugment to silc_ske_set_callbacks.  See silc_ske_set_callbacks for
275  *    more information.
276  *
277  *    If the key repository was provided in silc_ske_alloc this callback
278  *    is called only if the public key was not found from the repository.
279  *
280  ***/
281 typedef void (*SilcSKEVerifyCb)(SilcSKE ske,
282                                 SilcPublicKey public_key,
283                                 void *context,
284                                 SilcSKEVerifyCbCompletion completion,
285                                 void *completion_context);
286
287 /****f* silcske/SilcSKEAPI/SilcSKECompletionCb
288  *
289  * SYNOPSIS
290  *
291  *    typedef void (*SilcSKECompletionCb)(SilcSKE ske,
292  *                                        SilcSKEStatus status,
293  *                                        const SilcSKESecurityProperties prop,
294  *                                        const SilcSKEKeyMaterial keymat,
295  *                                        SilcSKERekeyMaterial rekey,
296  *                                        void *context);
297  *
298  * DESCRIPTION
299  *
300  *    Completion callback.  This is called after the key exchange protocol
301  *    has been completed.  It delivers the status of the protocol, and if
302  *    successful the security properties `prop' that was negotiated in the
303  *    protocol and the key material `keymat' that can be set into use by
304  *    calling silc_ske_set_keys, and the rekey key material `rekey' which
305  *    can be used later to start rekey protocol.  The `prop' and `keymat'
306  *    will remain valid as long as `ske' is valid.  The `rekey' will remain
307  *    valid until silc_ske_free_rekey_material is called.  The application
308  *    must call it to free the `rekey'.
309  *
310  *    When doing rekey, this completion callback delivers the `keymat' and
311  *    new `rekey'.  The `prop' is ignored.  The `keymat' has already been set
312  *    to the packet stream associated with the `ske'.  Thus, after this
313  *    is called the new keys are in use.
314  *
315  ***/
316 typedef void (*SilcSKECompletionCb)(SilcSKE ske,
317                                     SilcSKEStatus status,
318                                     const SilcSKESecurityProperties prop,
319                                     const SilcSKEKeyMaterial keymat,
320                                     SilcSKERekeyMaterial rekey,
321                                     void *context);
322
323 /* Prototypes */
324
325 /****f* silcske/SilcSKEAPI/silc_ske_alloc
326  *
327  * SYNOPSIS
328  *
329  *    SilcSKE silc_ske_alloc(SilcRng rng, SilcSchedule schedule,
330  *                           SilcSKR repository, SilcPublicKey public_key,
331  *                           SilcPrivateKey private_key, void *context);
332  *
333  * DESCRIPTION
334  *
335  *    Allocates the SKE session context and returns it.  The `rng' is
336  *    the random number generator the SKE is going to use when it needs
337  *    random number generation during the SKE session.  The `context' is
338  *    user context that the libary will not touch.  Application can get the
339  *    context by calling the fuction silc_ske_get_context function.  The
340  *    application is responsible of freeing the `context'.  After the
341  *    SKE session context is allocated application must call the
342  *    silc_ske_set_callbacks.
343  *
344  *    If the `repository' is non-NULL then the remote's public key will be
345  *    verified from the repository.  If it is not provided then the
346  *    SilcSKEVerifyCb callback must be set, and it will be called to
347  *    verify the key.  If both `repository' and the callback is provided the
348  *    callback is called only if the key is not found from the repository.
349  *
350  *    The `public_key' and `private_key' is the caller's identity used
351  *    during the key exchange.  Giving `private_key' is optional if the
352  *    SILC_SKE_SP_FLAG_MUTUAL is not set and you are initiator.  For
353  *    responder both `public_key' and `private_key' must be set.
354  *
355  * EXMPALE
356  *
357  *    // Initiator example
358  *    params.version = version;
359  *    params.flags = SILC_SKE_SP_FLAG_PFS | SILC_SKE_SP_FLAG_MUTUAL;
360  *    ske = silc_ske_alloc(rng, scheduler, NULL, pk, prv, app);
361  *    silc_ske_set_callbacks(ske, verify_public_key, completion, app);
362  *    silc_ske_initiator(ske, stream, &params, NULL);
363  *
364  ***/
365 SilcSKE silc_ske_alloc(SilcRng rng, SilcSchedule schedule,
366                        SilcSKR repository, SilcPublicKey public_key,
367                        SilcPrivateKey private_key, void *context);
368
369 /****f* silcske/SilcSKEAPI/silc_ske_free
370  *
371  * SYNOPSIS
372  *
373  *    void silc_ske_free(SilcSKE ske);
374  *
375  * DESCRIPTION
376  *
377  *    Frees the SKE session context and all allocated resources.
378  *
379  ***/
380 void silc_ske_free(SilcSKE ske);
381
382 /****f* silcske/SilcSKEAPI/silc_ske_get_context
383  *
384  * SYNOPSIS
385  *
386  *    void *silc_ske_get_context(SilcSKE ske);
387  *
388  * DESCRIPTION
389  *
390  *    Returns the context that was given as argument to silc_ske_alloc.
391  *
392  ***/
393 void *silc_ske_get_context(SilcSKE ske);
394
395 /****f* silcske/SilcSKEAPI/silc_ske_set_callbacks
396  *
397  * SYNOPSIS
398  *
399  *    void silc_ske_set_callbacks(SilcSKE ske,
400  *                                SilcSKEVerifyCb verify_key,
401  *                                SilcSKECompletion completed,
402  *                                void *context);
403  *
404  * DESCRIPTION
405  *
406  *    Sets the callback functions for the SKE session.
407  *
408  *    The `verify_key' callback is called to verify the received public key
409  *    or certificate.  The verification process is most likely asynchronous.
410  *    That is why the application must call the completion callback when the
411  *    verification process has been completed.  If this SKE session context
412  *    is used to perform  rekey, this callback usually is not provided as
413  *    argument since sending public key in rekey is not mandatory.  Setting
414  *    this callback implies that remote end MUST send its public key.
415  *
416  *    The `completed' callback will be called once the protocol has completed,
417  *    either successfully or with an error.  The status of the protocol is
418  *    delivered to application with the callback.
419  *
420  *    The `context' is passed as argument to all of the above callback
421  *    functions.
422  *
423  ***/
424 void silc_ske_set_callbacks(SilcSKE ske,
425                             SilcSKEVerifyCb verify_key,
426                             SilcSKECompletionCb completed,
427                             void *context);
428
429 /****f* silcske/SilcSKEAPI/silc_ske_initiator
430  *
431  * SYNOPSIS
432  *
433  *    SilcAsyncOperation
434  *    silc_ske_initiator(SilcSKE ske,
435  *                       SilcPacketStream stream,
436  *                       SilcSKEParams params,
437  *                       SilcSKEStartPayload start_payload);
438  *
439  * DESCRIPTION
440  *
441  *    Starts the SILC Key Exchange protocol as initiator.  The completion
442  *    callback that was set in silc_ske_set_callbacks will be called once
443  *    the protocol has completed.  The `stream' is the network connection
444  *    to the remote host.  The SKE library will handle all key exchange
445  *    packets sent and received in the `stream' connection.  The library will
446  *    also set the remote host's ID automatically to the `stream'.  The
447  *    `params' include SKE parameters, and it must be provided.
448  *
449  *    If the `start_payload' is NULL the library will generate it
450  *    automatically.  Caller may provide it if it wants to send its own
451  *    security properties instead of using the default ones library
452  *    generates.  If caller provides it, it must not free it once it has
453  *    been given as argument to this function.
454  *
455  *    This function returns SilcAsyncOperation operation context which can
456  *    be used to control the protocol from the application.  Application may
457  *    for example safely abort the protocol at any point, if needed.  Returns
458  *    NULL on error.
459  *
460  ***/
461 SilcAsyncOperation silc_ske_initiator(SilcSKE ske,
462                                       SilcPacketStream stream,
463                                       SilcSKEParams params,
464                                       SilcSKEStartPayload start_payload);
465
466 /****f* silcske/SilcSKEAPI/silc_ske_responder
467  *
468  * SYNOPSIS
469  *
470  *    SilcAsyncOperation
471  *    silc_ske_responder(SilcSKE ske,
472  *                       SilcPacketStream stream,
473  *                       SilcSKEParams params);
474  *
475  * DESCRIPTION
476  *
477  *    Starts SILC Key Exchange protocol as responder.  The completion
478  *    callback that was set in silc_ske_set_callbacks will be called once
479  *    the protocol has completed.  The `stream' is the network connection
480  *    to the remote host.  The SKE library will handle all key exchange
481  *    packets sent and received in the `stream' connection.  The `params'
482  *    include SKE parameters, and must be provided.
483  *
484  *    This function returns SilcAsyncOperation operation context which can
485  *    be used to control the protocol from the application.  Application may
486  *    for example safely abort the protocol at any point, if needed.  Returns
487  *    NULL on error.
488  *
489  ***/
490 SilcAsyncOperation silc_ske_responder(SilcSKE ske,
491                                       SilcPacketStream stream,
492                                       SilcSKEParams params);
493
494 /****f* silcske/SilcSKEAPI/silc_ske_rekey_initiator
495  *
496  * SYNOPSIS
497  *
498  *    SilcAsyncOperation
499  *    silc_ske_rekey_initiator(SilcSKE ske,
500  *                             SilcPacketStream stream,
501  *                             SilcSKERekeyMaterial rekey);
502  *
503  * DESCRIPTION
504  *
505  *    Starts SILC Key Exchange key regeneration (rekey) protocol.  The `rekey'
506  *    is the rekey material received earlier in SilcSKECompletionCb.  That
507  *    same callback is called after the rekey protocol is over to deliver new
508  *    key material and new rekey material.  When the rekey is completed the
509  *    SKE library will automatically update the new keys into `stream'.  The
510  *    completion callback is called after the new keys has been taken into
511  *    use.
512  *
513  *    This function returns SilcAsyncOperation operation context which can
514  *    be used to control the protocol from the application.  Application may
515  *    for example safely abort the protocol at any point, if needed.  Returns
516  *    NULL on error.
517  *
518  ***/
519 SilcAsyncOperation silc_ske_rekey_initiator(SilcSKE ske,
520                                             SilcPacketStream stream,
521                                             SilcSKERekeyMaterial rekey);
522
523 /****f* silcske/SilcSKEAPI/silc_ske_rekey_responder
524  *
525  * SYNOPSIS
526  *
527  *    SilcAsyncOperation
528  *    silc_ske_rekey_responder(SilcSKE ske,
529  *                             SilcPacketStream stream,
530  *                             SilcSKERekeyMaterial rekey,
531  *                             SilcPacket packet);
532  *
533  * DESCRIPTION
534  *
535  *    Starts SILC Key Exchange key regeneration (rekey) protocol as responder.
536  *    The `rekey' is the rekey material received earlier in
537  *    SilcSKECompletionCb.  That same callback is called after the rekey
538  *    protocol is over to deliver new key material and new rekey material.
539  *    When the rekey is completed the SKE library will automatically update
540  *    the new keys into `stream'.  The completion callback is called after
541  *    the new keys has been taken into use.
542  *
543  *    The `packet' is the SILC_PACKET_REKEY received to start the rekey
544  *    protocol.  If `packet' is NULL it is assumed that the packet will be
545  *    received from the `stream'.
546  *
547  *    This function returns SilcAsyncOperation operation context which can
548  *    be used to control the protocol from the application.  Application may
549  *    for example safely abort the protocol at any point, if needed.  Returns
550  *    NULL on error.
551  *
552  ***/
553 SilcAsyncOperation silc_ske_rekey_responder(SilcSKE ske,
554                                             SilcPacketStream stream,
555                                             SilcSKERekeyMaterial rekey,
556                                             SilcPacket packet);
557
558 /****f* silcske/SilcSKEAPI/silc_ske_set_keys
559  *
560  * SYNOPSIS
561  *
562  *    SilcBool silc_ske_set_keys(SilcSKE ske,
563  *                               SilcSKEKeyMaterial keymat,
564  *                               SilcSKESecurityProperties prop,
565  *                               SilcCipher *ret_send_key,
566  *                               SilcCipher *ret_receive_key,
567  *                               SilcHmac *ret_hmac_send,
568  *                               SilcHmac *ret_hmac_receive,
569  *                               SilcHash *ret_hash);
570  *
571  * DESCRIPTION
572  *
573  *    This function can be used after successful key exchange to take the
574  *    key material `keymat' with security properties `prop' into use.
575  *    This will allocate send and receive ciphers, HMACs and hash for the
576  *    application.  Caller must free the returned contexts.  This is an
577  *    utility function.
578  *
579  ***/
580 SilcBool silc_ske_set_keys(SilcSKE ske,
581                            SilcSKEKeyMaterial keymat,
582                            SilcSKESecurityProperties prop,
583                            SilcCipher *ret_send_key,
584                            SilcCipher *ret_receive_key,
585                            SilcHmac *ret_hmac_send,
586                            SilcHmac *ret_hmac_receive,
587                            SilcHash *ret_hash);
588
589 /****f* silcske/SilcSKEAPI/silc_ske_parse_version
590  *
591  * SYNOPSIS
592  *
593  *    SilcBool silc_ske_parse_version(SilcSKE ske,
594  *                                    SilcUInt32 *protocol_version,
595  *                                    char **protocol_version_string,
596  *                                    SilcUInt32 *software_version,
597  *                                    char **software_version_string,
598  *                                    char **vendor_version);
599  *
600  * DESCRIPTION
601  *
602  *    Utility function to parse the remote host's version string.  This can
603  *    be called after the key exchange has been completed.
604  *
605  ***/
606 SilcBool silc_ske_parse_version(SilcSKE ske,
607                                 SilcUInt32 *protocol_version,
608                                 char **protocol_version_string,
609                                 SilcUInt32 *software_version,
610                                 char **software_version_string,
611                                 char **vendor_version);
612
613 /****f* silcske/SilcSKEAPI/silc_ske_get_security_properties
614  *
615  * SYNOPSIS
616  *
617  *    SilcSKESecurityProperties silc_ske_get_security_properties(SilcSKE ske);
618  *
619  * DESCRIPTION
620  *
621  *    Returns negotiated security properties from the `ske' or NULL if they
622  *    have not yet been negotiated.  This may be called to retrieve the
623  *    security properties after the SilcSKECompletionCb has been called.
624  *
625  ***/
626 SilcSKESecurityProperties silc_ske_get_security_properties(SilcSKE ske);
627
628 /****f* silcske/SilcSKEAPI/silc_ske_get_key_material
629  *
630  * SYNOPSIS
631  *
632  *    SilcSKEKeyMaterial silc_ske_get_key_material(SilcSKE ske);
633  *
634  * DESCRIPTION
635  *
636  *    Returns the negotiated key material from the `ske' or NULL if the
637  *    key material does not exist.  The caller must not free the returned
638  *    pointer.
639  *
640  ***/
641 SilcSKEKeyMaterial silc_ske_get_key_material(SilcSKE ske);
642
643 /****f* silcske/SilcSKEAPI/silc_ske_process_key_material_data
644  *
645  * SYNOPSIS
646  *
647  *    const char *silc_ske_map_status(SilcSKEStatus status);
648  *
649  * DESCRIPTION
650  *
651  *    Utility function to process key data `data' in the way specified
652  *    by the SILC Key Exchange protocol.  This returns the processed key
653  *    material or NULL on error.  Caller must free the returned key
654  *    material context by calling silc_ske_free_key_material.
655  *
656  ***/
657 SilcSKEKeyMaterial
658 silc_ske_process_key_material_data(unsigned char *data,
659                                    SilcUInt32 data_len,
660                                    SilcUInt32 req_iv_len,
661                                    SilcUInt32 req_enc_key_len,
662                                    SilcUInt32 req_hmac_key_len,
663                                    SilcHash hash);
664
665 /****f* silcske/SilcSKEAPI/silc_ske_free_key_material
666  *
667  * SYNOPSIS
668  *
669  *    void silc_ske_free_key_material(SilcSKEKeyMaterial key)
670  *
671  * DESCRIPTION
672  *
673  *    Utility function to free the key material created by calling
674  *    silc_ske_process_key_material_data.
675  *
676  ***/
677 void silc_ske_free_key_material(SilcSKEKeyMaterial key);
678
679 /****f* silcske/SilcSKEAPI/silc_ske_free_rekey_material
680  *
681  * SYNOPSIS
682  *
683  *    void silc_ske_free_rekey_material(SilcSKERekeyMaterial rekey);
684  *
685  * DESCRIPTION
686  *
687  *    Utility function to free the rekey material returned in the
688  *    SilcSKECompletionCb callback.
689  *
690  ***/
691 void silc_ske_free_rekey_material(SilcSKERekeyMaterial rekey);
692
693 /****f* silcske/SilcSKEAPI/silc_ske_map_status
694  *
695  * SYNOPSIS
696  *
697  *    const char *silc_ske_map_status(SilcSKEStatus status);
698  *
699  * DESCRIPTION
700  *
701  *    Utility function to map the `status' into human readable message.
702  *
703  ***/
704 const char *silc_ske_map_status(SilcSKEStatus status);
705
706 #include "silcske_i.h"
707
708 #endif  /* !SILCSKE_H */