SSH Daemon Project
public
Read
Owner: themaster
Branch: main
Commits: 2
Updated: 2026-04-19 00:20
Git CLI clone URL
git clone https://www.xt-emporium.com/git/ssh-daemon-project.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
ssh-daemon-project
/
libtomcrypt
/
src
/
misc
/
crypt
/
crypt_register_all_prngs.c
File editor
/* LibTomCrypt, modular cryptographic library -- Tom St Denis * * LibTomCrypt is a library that provides various cryptographic * algorithms in a highly modular and flexible manner. * * The library is free for all purposes without any express * guarantee it works. */ #include "tomcrypt.h" /** @file crypt_register_all_prngs.c Steffen Jaeckel */ #define REGISTER_PRNG(h) do {\ LTC_ARGCHK(register_prng(h) != -1); \ } while(0) int register_all_prngs(void) { #ifdef LTC_YARROW REGISTER_PRNG(&yarrow_desc); #endif #ifdef LTC_FORTUNA REGISTER_PRNG(&fortuna_desc); #endif #ifdef LTC_RC4 REGISTER_PRNG(&rc4_desc); #endif #ifdef LTC_CHACHA20_PRNG REGISTER_PRNG(&chacha20_prng_desc); #endif #ifdef LTC_SOBER128 REGISTER_PRNG(&sober128_desc); #endif #ifdef LTC_SPRNG REGISTER_PRNG(&sprng_desc); #endif return CRYPT_OK; } /* ref: $Format:%D$ */ /* git commit: $Format:%H$ */ /* commit time: $Format:%ai$ */
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
main
Visibility
public
Your access
Read
Remote
None
File activity
View file history