diff --git a/ChangeLog b/ChangeLog index e6b4821..8ef5efb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,8 @@ 3/15/2015 Oleg Moskalenko Version 4.4.4.1 'Ardee West': - - 'native' SCTP support; + - 'native' SCTP support (experimental); - option of encrypted passwords for web admin users; - option of encrypted password for CLI user; - - option of encrypted shared secrets; 2/28/2015 Oleg Moskalenko Version 4.4.2.3 'Ardee West': diff --git a/README.turnadmin b/README.turnadmin index e6dc1b8..8e30368 100644 --- a/README.turnadmin +++ b/README.turnadmin @@ -48,8 +48,8 @@ $ turnadmin [ -h | --help] Commands: -P, --generate-encrypted-password Generate and print to the standard -output an encrypted form of a password (for web admin user, or shared -secret, or CLI). The value then can be used as a safe key for the password +output an encrypted form of a password (for web admin user or CLI). +The value then can be used as a safe key for the password storage on disk or in the database. Every invocation for the same password produces a different result. The for mat of the encrypted password is: $5$<...salt...>$<...sha256(salt+password)...>. Salt is 16 characters, diff --git a/man/man1/turnadmin.1 b/man/man1/turnadmin.1 index 08cd773..249d9b0 100644 --- a/man/man1/turnadmin.1 +++ b/man/man1/turnadmin.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "20 March 2015" "" "" +.TH TURN 1 "21 March 2015" "" "" .SH GENERAL INFORMATION \fIturnadmin\fP is a TURN administration tool. This tool can be used to manage @@ -68,8 +68,8 @@ Commands: .B \fB\-P\fP, \fB\-\-generate\-encrypted\-password\fP Generate and print to the standard -output an encrypted form of a password (for web admin user, or shared -secret, or CLI). The value then can be used as a safe key for the password +output an encrypted form of a password (for web admin user or CLI). +The value then can be used as a safe key for the password storage on disk or in the database. Every invocation for the same password produces a different result. The for mat of the encrypted password is: $5$<\.\.\.salt\.\.\.>$<\.\.\.sha256(salt+password)\.\.\.>. Salt is 16 characters, diff --git a/man/man1/turnserver.1 b/man/man1/turnserver.1 index 5c42dab..7f4d0c0 100644 --- a/man/man1/turnserver.1 +++ b/man/man1/turnserver.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "20 March 2015" "" "" +.TH TURN 1 "21 March 2015" "" "" .SH GENERAL INFORMATION The \fBTURN Server\fP project contains the source code of a TURN server and TURN client diff --git a/man/man1/turnutils.1 b/man/man1/turnutils.1 index f474c0b..2c3e03d 100644 --- a/man/man1/turnutils.1 +++ b/man/man1/turnutils.1 @@ -1,5 +1,5 @@ .\" Text automatically generated by txt2man -.TH TURN 1 "20 March 2015" "" "" +.TH TURN 1 "21 March 2015" "" "" .SH GENERAL INFORMATION A set of turnutils_* programs provides some utility functionality to be used diff --git a/src/apps/relay/mainrelay.c b/src/apps/relay/mainrelay.c index 20bf592..48df9ac 100644 --- a/src/apps/relay/mainrelay.c +++ b/src/apps/relay/mainrelay.c @@ -604,8 +604,7 @@ static char AdminUsage[] = "Usage: turnadmin [command] [options]\n" "\nCommands:\n\n" " -P, --generate-encrypted-password Generate and print to the standard\n" " output an encrypted form of a password\n" - " (for web admin user, or shared\n" - " secret, or CLI). See wiki, README or man\n" + " (for web admin user or CLI). See wiki, README or man\n" " pages for more detailed description.\n" " -k, --key generate long-term credential mechanism key for a user\n" " -a, --add add/update a long-term mechanism user\n"