File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
# bedrock-web-authn-token ChangeLog
2
2
3
+ ## 7.0.1 - 2025-mm-dd
4
+
5
+ ### Fixed
6
+ - Fix bug with pbkdf2 expression of salt parameter.
7
+
3
8
## 7.0.0 - 2023-10-16
4
9
5
10
### Changed
Original file line number Diff line number Diff line change 1
1
/*!
2
- * Copyright (c) 2018-2022 Digital Bazaar, Inc. All rights reserved.
2
+ * Copyright (c) 2018-2025 Digital Bazaar, Inc. All rights reserved.
3
3
*/
4
4
import * as base64url from 'base64url-universal' ;
5
5
import crypto from './crypto.js' ;
@@ -72,7 +72,7 @@ function _serializePhc({phc}) {
72
72
}
73
73
74
74
function _fromBase64NoPad ( string ) {
75
- return base64url . decode ( string . replace ( / \+ / g, '-' ) . replace ( / \/ / , '_' ) ) ;
75
+ return base64url . decode ( string . replace ( / \+ / g, '-' ) . replace ( / \/ / g , '_' ) ) ;
76
76
}
77
77
78
78
function _toBase64NoPad ( buffer ) {
You can’t perform that action at this time.
0 commit comments