X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fpw_encrypt.c;h=469e71f6ccdc9606a8f895d9db2d07127a17419f;hb=08ea11ab0749a7977e6d47cd0fa7b3c9cc10af32;hp=73631865c6ad79e8ceee0a062ac5f3a8a85a6bd8;hpb=f45c4f41b792e4b7c52eaf21b9540112887e861b;p=oweals%2Fbusybox.git diff --git a/libbb/pw_encrypt.c b/libbb/pw_encrypt.c index 73631865c..469e71f6c 100644 --- a/libbb/pw_encrypt.c +++ b/libbb/pw_encrypt.c @@ -50,7 +50,7 @@ static void my_crypt_cleanup(void) des_ctx = NULL; } -char *pw_encrypt(const char *clear, const char *salt, int cleanup) +char* FAST_FUNC pw_encrypt(const char *clear, const char *salt, int cleanup) { char *encrypted; @@ -70,7 +70,7 @@ char *pw_encrypt(const char *clear, const char *salt, int cleanup) #else /* if !ENABLE_USE_BB_CRYPT */ -char *pw_encrypt(const char *clear, const char *salt, int cleanup) +char* FAST_FUNC pw_encrypt(const char *clear, const char *salt, int cleanup) { #if 0 /* was CONFIG_FEATURE_SHA1_PASSWORDS, but there is no such thing??? */ if (strncmp(salt, "$2$", 3) == 0) {