]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify url-digest-auth-make-cnonce
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 11 Feb 2019 08:08:03 +0000 (00:08 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 11 Feb 2019 08:08:41 +0000 (00:08 -0800)
* lisp/url/url-auth.el (url-digest-auth-make-cnonce):
Simplify by using encode-time instead of round-tripping
through a format-time-string and ‘read’.

lisp/url/url-auth.el

index 1ef73a62c020e406aa7536eba9123347c7a6f391..0746cfd96cb832b599644b1d61c98be1e8a67c3d 100644 (file)
@@ -192,8 +192,7 @@ key cache `url-digest-auth-storage'."
 (defun url-digest-auth-make-cnonce ()
   "Compute a new unique client nonce value."
   (base64-encode-string
-   (apply #'format "%016x%08x%08x" (random)
-         (read (format-time-string "(%s %N)")))
+   (format "%016x%016x" (random) (car (encode-time nil t)))
    t))
 
 (defun url-digest-auth-nonce-count (_nonce)