diff --git a/src/getrandom_crypto.c b/src/getrandom_crypto.c index 078560ec..df8bd19f 100644 --- a/src/getrandom_crypto.c +++ b/src/getrandom_crypto.c @@ -24,6 +24,12 @@ #include "libssh/crypto.h" #include +/** + * @addtogroup libssh_misc + * + * @{ + */ + /** * @brief Get random bytes * @@ -52,3 +58,7 @@ ssh_get_random(void *where, int len, int strong) /* Returns -1 when not supported, 0 on error, 1 on success */ return !!RAND_bytes(where, len); } + +/** + * @} + */