File tree 4 files changed +23
-3
lines changed
4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,12 @@ function base (ALPHABET) {
82
82
const b256 = new Uint8Array ( size )
83
83
// Process the characters.
84
84
while ( psz < source . length ) {
85
+ // Find code of next character
86
+ const charCode = source . charCodeAt ( psz )
87
+ // Base map can not be indexed using char code
88
+ if ( charCode > 255 ) { return }
85
89
// Decode character
86
- let carry = BASE_MAP [ source . charCodeAt ( psz ) ]
90
+ let carry = BASE_MAP [ charCode ]
87
91
// Invalid character
88
92
if ( carry === 255 ) { return }
89
93
let i = 0
Original file line number Diff line number Diff line change @@ -80,8 +80,12 @@ function base (ALPHABET) {
80
80
const b256 = new Uint8Array ( size )
81
81
// Process the characters.
82
82
while ( psz < source . length ) {
83
+ // Find code of next character
84
+ const charCode = source . charCodeAt ( psz )
85
+ // Base map can not be indexed using char code
86
+ if ( charCode > 255 ) { return }
83
87
// Decode character
84
- let carry = BASE_MAP [ source . charCodeAt ( psz ) ]
88
+ let carry = BASE_MAP [ charCode ]
85
89
// Invalid character
86
90
if ( carry === 255 ) { return }
87
91
let i = 0
Original file line number Diff line number Diff line change 660
660
"alphabet" : " 0123456789fabcdef" ,
661
661
"description" : " poorly formed alphabet" ,
662
662
"exception" : " ^TypeError: f is ambiguous$"
663
+ },
664
+ {
665
+ "alphabet" : " base58" ,
666
+ "description" : " character whose code exceeds the highest index of base map (>=256)" ,
667
+ "exception" : " ^Error: Non-base58 character$" ,
668
+ "string" : " \u1000 "
663
669
}
664
670
]
665
671
}
Original file line number Diff line number Diff line change @@ -101,8 +101,14 @@ function base (ALPHABET: string): base.BaseConverter {
101
101
102
102
// Process the characters.
103
103
while ( psz < source . length ) {
104
+ // Find code of next character
105
+ const charCode = source . charCodeAt ( psz )
106
+
107
+ // Base map can not be indexed using char code
108
+ if ( charCode > 255 ) return
109
+
104
110
// Decode character
105
- let carry = BASE_MAP [ source . charCodeAt ( psz ) ]
111
+ let carry = BASE_MAP [ charCode ]
106
112
107
113
// Invalid character
108
114
if ( carry === 255 ) return
You can’t perform that action at this time.
0 commit comments