tls_none.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /*
  2. * SSL/TLS interface functions for no TLS case
  3. * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "tls.h"
  11. void * tls_init(const struct tls_config *conf)
  12. {
  13. return (void *) 1;
  14. }
  15. void tls_deinit(void *ssl_ctx)
  16. {
  17. }
  18. int tls_get_errors(void *tls_ctx)
  19. {
  20. return 0;
  21. }
  22. struct tls_connection * tls_connection_init(void *tls_ctx)
  23. {
  24. return NULL;
  25. }
  26. void tls_connection_deinit(void *tls_ctx, struct tls_connection *conn)
  27. {
  28. }
  29. int tls_connection_established(void *tls_ctx, struct tls_connection *conn)
  30. {
  31. return -1;
  32. }
  33. int tls_connection_shutdown(void *tls_ctx, struct tls_connection *conn)
  34. {
  35. return -1;
  36. }
  37. int tls_connection_set_params(void *tls_ctx, struct tls_connection *conn,
  38. const struct tls_connection_params *params)
  39. {
  40. return -1;
  41. }
  42. int tls_global_set_params(void *tls_ctx,
  43. const struct tls_connection_params *params)
  44. {
  45. return -1;
  46. }
  47. int tls_global_set_verify(void *tls_ctx, int check_crl)
  48. {
  49. return -1;
  50. }
  51. int tls_connection_set_verify(void *tls_ctx, struct tls_connection *conn,
  52. int verify_peer)
  53. {
  54. return -1;
  55. }
  56. int tls_connection_get_random(void *tls_ctx, struct tls_connection *conn,
  57. struct tls_random *data)
  58. {
  59. return -1;
  60. }
  61. int tls_connection_prf(void *tls_ctx, struct tls_connection *conn,
  62. const char *label, int server_random_first,
  63. int skip_keyblock, u8 *out, size_t out_len)
  64. {
  65. return -1;
  66. }
  67. struct wpabuf * tls_connection_handshake(void *tls_ctx,
  68. struct tls_connection *conn,
  69. const struct wpabuf *in_data,
  70. struct wpabuf **appl_data)
  71. {
  72. return NULL;
  73. }
  74. struct wpabuf * tls_connection_server_handshake(void *tls_ctx,
  75. struct tls_connection *conn,
  76. const struct wpabuf *in_data,
  77. struct wpabuf **appl_data)
  78. {
  79. return NULL;
  80. }
  81. struct wpabuf * tls_connection_encrypt(void *tls_ctx,
  82. struct tls_connection *conn,
  83. const struct wpabuf *in_data)
  84. {
  85. return NULL;
  86. }
  87. struct wpabuf * tls_connection_decrypt(void *tls_ctx,
  88. struct tls_connection *conn,
  89. const struct wpabuf *in_data)
  90. {
  91. return NULL;
  92. }
  93. int tls_connection_resumed(void *tls_ctx, struct tls_connection *conn)
  94. {
  95. return 0;
  96. }
  97. int tls_connection_set_cipher_list(void *tls_ctx, struct tls_connection *conn,
  98. u8 *ciphers)
  99. {
  100. return -1;
  101. }
  102. int tls_get_version(void *ssl_ctx, struct tls_connection *conn,
  103. char *buf, size_t buflen)
  104. {
  105. return -1;
  106. }
  107. int tls_get_cipher(void *tls_ctx, struct tls_connection *conn,
  108. char *buf, size_t buflen)
  109. {
  110. return -1;
  111. }
  112. int tls_connection_enable_workaround(void *tls_ctx,
  113. struct tls_connection *conn)
  114. {
  115. return -1;
  116. }
  117. int tls_connection_client_hello_ext(void *tls_ctx, struct tls_connection *conn,
  118. int ext_type, const u8 *data,
  119. size_t data_len)
  120. {
  121. return -1;
  122. }
  123. int tls_connection_get_failed(void *tls_ctx, struct tls_connection *conn)
  124. {
  125. return 0;
  126. }
  127. int tls_connection_get_read_alerts(void *tls_ctx, struct tls_connection *conn)
  128. {
  129. return 0;
  130. }
  131. int tls_connection_get_write_alerts(void *tls_ctx,
  132. struct tls_connection *conn)
  133. {
  134. return 0;
  135. }
  136. int tls_get_library_version(char *buf, size_t buf_len)
  137. {
  138. return os_snprintf(buf, buf_len, "none");
  139. }