wolfssl_dummy.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* wolfssl_dummy.c
  2. *
  3. * Copyright (C) 2006-2023 wolfSSL Inc.
  4. *
  5. * This file is part of wolfSSL.
  6. *
  7. * wolfSSL is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * wolfSSL is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
  20. */
  21. #ifdef HAVE_CONFIG_H
  22. #include <config.h>
  23. #endif
  24. #include <wolfssl/wolfcrypt/settings.h>
  25. #include <wolfssl/ssl.h>
  26. #include <wolfssl/wolfcrypt/types.h>
  27. #include <wolfssl/wolfcrypt/error-crypt.h>
  28. #include <stdio.h>
  29. #define YEAR 2018
  30. #define MON 5
  31. static int tick = 0;
  32. time_t time(time_t *t)
  33. {
  34. return ((YEAR-1970)*365+30*MON)*24*60*60 + tick++;
  35. }
  36. #include <ctype.h>
  37. int strncasecmp(const char *s1, const char * s2, unsigned int sz)
  38. {
  39. for( ; sz>0; sz--, s1++, s2++){
  40. if(toupper(*s1) < toupper(*s2)){
  41. return -1;
  42. }
  43. if(toupper(*s1) > toupper(*s2)){
  44. return 1;
  45. }
  46. }
  47. return 0;
  48. }
  49. void abort(void)
  50. {
  51. while(1);
  52. }