key-main.c 979 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* key-main.c -- SSH keys.
  2. *
  3. * Copyright (C) 2013 Artyom V. Poptsov <poptsov.artyom@gmail.com>
  4. *
  5. * This file is part of Guile-SSH
  6. *
  7. * Guile-SSH is free software: you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation, either version 3 of the
  10. * License, or (at your option) any later version.
  11. *
  12. * Guile-SSH is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include <config.h>
  21. #include "key-type.h"
  22. #include "key-func.h"
  23. #include "threads.h"
  24. void
  25. init_key (void)
  26. {
  27. init_key_type ();
  28. init_key_func ();
  29. init_pthreads ();
  30. }
  31. /* key-main.c ends here */