Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/www-authenticate-patched/www-authenticate.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2015-2025 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
* Copyright (c) 2015-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
*/

/*
Expand Down Expand Up @@ -41,7 +41,7 @@ const www_authenticator = function(username,password,options)
if (toString.call(options.cnonce) == '[object String]')
{cnonce= options.cnonce;}
}
if (cnonce === void 0) {cnonce= crypto.pseudoRandomBytes(8).toString('hex');}
if (cnonce === void 0) {cnonce= crypto.randomBytes(8).toString('hex');}
const parse_header= function(www_authenticate)
{
function Authenticator()
Expand Down
Loading