File tree 2 files changed +35
-5
lines changed
2 files changed +35
-5
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,24 @@ impl<const N: usize> FromBase32 for [u8; N] {
50
50
type Err = Bolt11ParseError ;
51
51
52
52
fn from_base32 ( data : & [ Fe32 ] ) -> Result < Self , Self :: Err > {
53
- data. iter ( ) . copied ( ) . fes_to_bytes ( ) . collect :: < Vec < _ > > ( ) . try_into ( ) . map_err ( |_| {
54
- Bolt11ParseError :: InvalidSliceLength (
53
+ let mut res_arr = [ 0 ; N ] ;
54
+ // Do in a for loop to place in the array directly, not using `collect`
55
+ let mut idx = 0 ;
56
+ for elem in data. iter ( ) . copied ( ) . fes_to_bytes ( ) {
57
+ if idx >= N {
58
+ break ; // too many inputs, stop early, OK
59
+ }
60
+ res_arr[ idx] = elem;
61
+ idx += 1 ;
62
+ }
63
+ if idx != N {
64
+ return Err ( Bolt11ParseError :: InvalidSliceLength (
55
65
data. len ( ) ,
56
66
( N * 8 + 4 ) / 5 ,
57
67
"<[u8; N]>" ,
58
- )
59
- } )
68
+ ) ) ;
69
+ }
70
+ Ok ( res_arr)
60
71
}
61
72
}
62
73
Original file line number Diff line number Diff line change @@ -59,15 +59,34 @@ fn array_u8() {
59
59
60
60
#[ test]
61
61
fn array_u8_error_invalid_length ( ) {
62
+ // correct len -- 5 fe32 -> 3 bytes
62
63
assert_eq ! (
63
64
<[ u8 ; 3 ] >:: from_base32(
64
- & "qqqs" . to_string( ) . chars( ) . map( |c| Fe32 :: from_char( c) . unwrap( ) ) . collect:: <Vec <_>>( ) [ ..]
65
+ & "pqqql" . to_string( ) . chars( ) . map( |c| Fe32 :: from_char( c) . unwrap( ) ) . collect:: <Vec <_>>( ) [ ..]
66
+ )
67
+ . unwrap( ) ,
68
+ [ 8 , 0 , 15 ]
69
+ ) ;
70
+
71
+ // input too short
72
+ assert_eq ! (
73
+ <[ u8 ; 3 ] >:: from_base32(
74
+ & "pqql" . to_string( ) . chars( ) . map( |c| Fe32 :: from_char( c) . unwrap( ) ) . collect:: <Vec <_>>( ) [ ..]
65
75
)
66
76
. err( )
67
77
. unwrap( )
68
78
. to_string( ) ,
69
79
"Slice had length 4 instead of 5 for element <[u8; N]>"
70
80
) ;
81
+
82
+ // input too long
83
+ assert_eq ! (
84
+ <[ u8 ; 3 ] >:: from_base32(
85
+ & "pqqqql" . to_string( ) . chars( ) . map( |c| Fe32 :: from_char( c) . unwrap( ) ) . collect:: <Vec <_>>( ) [ ..]
86
+ )
87
+ . unwrap( ) ,
88
+ [ 8 , 0 , 0 ]
89
+ ) ;
71
90
}
72
91
73
92
#[ test]
You can’t perform that action at this time.
0 commit comments