[llvm] r269157 - Most common problem is that I get md5 hashes, not crypt hashes.
Chris Lattner via llvm-commits
llvm-commits at lists.llvm.org
Tue May 10 20:47:37 PDT 2016
Author: lattner
Date: Tue May 10 22:47:36 2016
New Revision: 269157
URL: http://llvm.org/viewvc/llvm-project?rev=269157&view=rev
Log:
Most common problem is that I get md5 hashes, not crypt hashes.
Modified:
llvm/trunk/docs/DeveloperPolicy.rst
Modified: llvm/trunk/docs/DeveloperPolicy.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/DeveloperPolicy.rst?rev=269157&r1=269156&r2=269157&view=diff
==============================================================================
--- llvm/trunk/docs/DeveloperPolicy.rst (original)
+++ llvm/trunk/docs/DeveloperPolicy.rst Tue May 10 22:47:36 2016
@@ -348,8 +348,10 @@ quality patches. If you would like comm
#. A "password hash" of the password you want to use, e.g. "``2ACR96qjUqsyM``".
Note that you don't ever tell us what your password is; you just give it to
us in an encrypted form. To get this, run "``htpasswd``" (a utility that
- comes with apache) in crypt mode (often enabled with "``-d``"), or find a web
- page that will do it for you.
+ comes with apache) in *crypt* mode (often enabled with "``-d``"), or find a web
+ page that will do it for you. Note that our system does not work with MD5
+ hashes. These are significantly longer than a crypt hash - e.g.
+ "``$apr1$vea6bBV2$Z8IFx.AfeD8LhqlZFqJer0``".
Once you've been granted commit access, you should be able to check out an LLVM
tree with an SVN URL of "https://username@llvm.org/..." instead of the normal
More information about the llvm-commits
mailing list