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
/
src
/
crypto_desc.c
File editor
#include "includes.h" #include "dbutil.h" #include "crypto_desc.h" #include "ltc_prng.h" #include "ecc.h" #include "dbrandom.h" #if DROPBEAR_LTC_PRNG int dropbear_ltc_prng = -1; #endif /* Wrapper for libtommath */ #if DROPBEAR_NORMAL_DH || DROPBEAR_ECDH || DROPBEAR_RSA || DROPBEAR_DSS || DROPBEAR_ECDSA static mp_err dropbear_rand_source(void* out, size_t size) { genrandom((unsigned char*)out, (unsigned int)size); return MP_OKAY; } #endif /* Register the compiled in ciphers. * This should be run before using any of the ciphers/hashes */ void crypto_init() { const struct ltc_cipher_descriptor *regciphers[] = { #if DROPBEAR_AES &aes_desc, #endif #if DROPBEAR_3DES &des3_desc, #endif NULL }; const struct ltc_hash_descriptor *reghashes[] = { #if DROPBEAR_SHA1_HMAC &sha1_desc, #endif #if DROPBEAR_SHA256 &sha256_desc, #endif #if DROPBEAR_SHA384 &sha384_desc, #endif #if DROPBEAR_SHA512 &sha512_desc, #endif NULL }; int i; for (i = 0; regciphers[i] != NULL; i++) { if (register_cipher(regciphers[i]) == -1) { dropbear_exit("Error registering crypto"); } } for (i = 0; reghashes[i] != NULL; i++) { if (register_hash(reghashes[i]) == -1) { dropbear_exit("Error registering crypto"); } } #if DROPBEAR_LTC_PRNG dropbear_ltc_prng = register_prng(&dropbear_prng_desc); if (dropbear_ltc_prng == -1) { dropbear_exit("Error registering crypto"); } #endif #if DROPBEAR_NORMAL_DH || DROPBEAR_ECDH || DROPBEAR_RSA || DROPBEAR_DSS || DROPBEAR_ECDSA mp_rand_source(dropbear_rand_source); #endif #if DROPBEAR_ECC ltc_mp = ltm_desc; dropbear_ecc_fill_dp(); #endif }
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