29 lines
641 B
C
29 lines
641 B
C
/*
|
|
* WPA Supplicant / SSL/TLS interface functions for no TLS case
|
|
* Copyright (c) 2004, Jouni Malinen <jkmaline@cc.hut.fi>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* Alternatively, this software may be distributed under the terms of BSD
|
|
* license.
|
|
*
|
|
* See README and COPYING for more details.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "common.h"
|
|
#include "tls.h"
|
|
|
|
void * tls_init(const struct tls_config *conf)
|
|
{
|
|
return (void *) 1;
|
|
}
|
|
|
|
void tls_deinit(void *ssl_ctx)
|
|
{
|
|
}
|