Was:
    $ cryptpw --help
    ...
    Print crypt(3) hashed PASSWORD
        -P,--password-fd=N	Read password from fd N
        -m,--method=TYPE	Encryption method
        -S,--salt=SALT
User: "What methods exist? which one os default?"
Now:
    Print crypt(3) hashed PASSWORD
        -P,--password-fd N	Read password from fd N
        -m,--method TYPE	des,md5,sha256/512 (default des)
        -S,--salt SALT
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			779 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			779 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* vi: set sw=8 ts=8: */
 | 
						|
/*
 | 
						|
 * This file suffers from chronically incorrect tabification
 | 
						|
 * of messages. Before editing this file:
 | 
						|
 * 1. Switch you editor to 8-space tab mode.
 | 
						|
 * 2. Do not use \t in messages, use real tab character.
 | 
						|
 * 3. Start each source line with message as follows:
 | 
						|
 *    |<7 spaces>"text with tabs"....
 | 
						|
 * or
 | 
						|
 *    |<5 spaces>"\ntext with tabs"....
 | 
						|
 */
 | 
						|
#ifndef BB_USAGE_H
 | 
						|
#define BB_USAGE_H 1
 | 
						|
 | 
						|
#define NOUSAGE_STR "\b"
 | 
						|
 | 
						|
#if !ENABLE_USE_BB_CRYPT || ENABLE_USE_BB_CRYPT_SHA
 | 
						|
# define CRYPT_METHODS_HELP_STR "des,md5,sha256/512" \
 | 
						|
	" (default "CONFIG_FEATURE_DEFAULT_PASSWD_ALGO")"
 | 
						|
#else
 | 
						|
# define CRYPT_METHODS_HELP_STR "des,md5" \
 | 
						|
	" (default "CONFIG_FEATURE_DEFAULT_PASSWD_ALGO")"
 | 
						|
#endif
 | 
						|
 | 
						|
INSERT
 | 
						|
 | 
						|
#define busybox_notes_usage \
 | 
						|
       "Hello world!\n"
 | 
						|
 | 
						|
#endif
 |