1.1: Handle padding
This commit is contained in:
parent
e8f8e5f14d
commit
cc90defb73
1 changed files with 35 additions and 5 deletions
40
src/lib.rs
40
src/lib.rs
|
@ -2,17 +2,19 @@ static B64: &'static str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
|
||||||
|
|
||||||
pub fn base64(hex: &str) -> Result<String, String> {
|
pub fn base64(hex: &str) -> Result<String, String> {
|
||||||
let mut out = String::from("");
|
let mut out = String::from("");
|
||||||
|
let mut num_bits = 0;
|
||||||
let mut acc: u32 = 0;
|
let mut acc: u32 = 0;
|
||||||
for (idx, c) in hex.char_indices() {
|
for (idx, c) in hex.char_indices() {
|
||||||
if let Some(c_digit) = c.to_digit(16) {
|
if let Some(c_digit) = c.to_digit(16) {
|
||||||
// Accumulate bytes until we have 24 of them. (We can do this with any number of bytes % 6.
|
// Accumulate bytes until we have 6 chunks of 4.
|
||||||
acc = (acc << 4) + c_digit;
|
acc = (acc << 4) + c_digit;
|
||||||
println!("idx={}, c='{}'({:2}), acc={:024b}", idx, c, c_digit, acc);
|
num_bits += 4;
|
||||||
|
println!("idx={}, c='{}'({:2}), acc={:024b}, n={}", idx, c, c_digit, acc, num_bits);
|
||||||
if idx % 6 != 5 {
|
if idx % 6 != 5 {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read out bytes in chunks of 6.
|
// Read out 4 chunks of 6.
|
||||||
for i in (0..4).rev() {
|
for i in (0..4).rev() {
|
||||||
let out_char_idx = ((acc >> (6 * i)) & 0x3F) as usize;
|
let out_char_idx = ((acc >> (6 * i)) & 0x3F) as usize;
|
||||||
println!(" i:{}, shift:{}, out_char_idx:{:08b}", i, 6*i, out_char_idx);
|
println!(" i:{}, shift:{}, out_char_idx:{:08b}", i, 6*i, out_char_idx);
|
||||||
|
@ -24,11 +26,30 @@ pub fn base64(hex: &str) -> Result<String, String> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
acc = 0;
|
acc = 0;
|
||||||
|
num_bits = 0;
|
||||||
} else {
|
} else {
|
||||||
return Err(format!("Invalid input: {}", c));
|
return Err(format!("Invalid input: {}", c));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if acc != 0 {
|
||||||
|
acc = acc << (24 - num_bits);
|
||||||
|
let padding = (24 - num_bits) / 6;
|
||||||
|
println!("Making up for missing bits: n={}, acc={:024b}", num_bits, acc);
|
||||||
|
for i in (0..4).rev() {
|
||||||
|
let out_char_idx = ((acc >> (6 * i)) & 0x3F) as usize;
|
||||||
|
println!(" i:{}, shift:{}, out_char_idx:{:08b}", i, 6*i, out_char_idx);
|
||||||
|
// TODO: I don't like this nth() call.
|
||||||
|
if i < padding {
|
||||||
|
out.push('=');
|
||||||
|
} else if let Some(out_char) = B64.chars().nth(out_char_idx) {
|
||||||
|
out.push(out_char);
|
||||||
|
} else {
|
||||||
|
return Err(format!("Couldn't make output char from {} (shifted: {})", out_char_idx, 6 * i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(out)
|
Ok(out)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,7 +58,7 @@ mod tests {
|
||||||
use super::base64;
|
use super::base64;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn simple_single() {
|
fn small_wikipedia_example() {
|
||||||
let input = "4d616e";
|
let input = "4d616e";
|
||||||
let ex_output = "TWFu";
|
let ex_output = "TWFu";
|
||||||
println!("");
|
println!("");
|
||||||
|
@ -46,7 +67,7 @@ mod tests {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn padding() {
|
fn one_byte_padding() {
|
||||||
let input = "6f6d";
|
let input = "6f6d";
|
||||||
let ex_output = "b20=";
|
let ex_output = "b20=";
|
||||||
println!("");
|
println!("");
|
||||||
|
@ -54,6 +75,15 @@ mod tests {
|
||||||
assert_eq!(output, ex_output);
|
assert_eq!(output, ex_output);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn two_byte_padding() {
|
||||||
|
let input = "6f";
|
||||||
|
let ex_output = "bw==";
|
||||||
|
println!("");
|
||||||
|
let output = base64(input).expect("Error converting to base64");
|
||||||
|
assert_eq!(output, ex_output);
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn cryptopals_input() {
|
fn cryptopals_input() {
|
||||||
let input = "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d";
|
let input = "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue