Update for string changes

This commit is contained in:
Steven Fackler 2014-05-23 20:12:36 -07:00
parent c0a964fc7b
commit 1664d38342
2 changed files with 6 additions and 6 deletions

View File

@ -108,7 +108,7 @@ mod tests {
struct HashTest { struct HashTest {
input: Vec<u8>, input: Vec<u8>,
expected_output: ~str expected_output: StrBuf
} }
fn HashTest(input: &str, output: &str) -> HashTest { fn HashTest(input: &str, output: &str) -> HashTest {

View File

@ -221,7 +221,7 @@ mod tests {
assert!(p1 == p0); assert!(p1 == p0);
} }
fn cipher_test(ciphertype: super::Type, pt: ~str, ct: ~str, key: ~str, iv: ~str) { fn cipher_test(ciphertype: super::Type, pt: &str, ct: &str, key: &str, iv: &str) {
use serialize::hex::ToHex; use serialize::hex::ToHex;
let cipher = super::Crypter::new(ciphertype); let cipher = super::Crypter::new(ciphertype);
@ -244,10 +244,10 @@ mod tests {
#[test] #[test]
fn test_rc4() { fn test_rc4() {
let pt = "0000000000000000000000000000000000000000000000000000000000000000000000000000".to_owned(); let pt = "0000000000000000000000000000000000000000000000000000000000000000000000000000";
let ct = "A68686B04D686AA107BD8D4CAB191A3EEC0A6294BC78B60F65C25CB47BD7BB3A48EFC4D26BE4".to_owned(); let ct = "A68686B04D686AA107BD8D4CAB191A3EEC0A6294BC78B60F65C25CB47BD7BB3A48EFC4D26BE4";
let key = "97CD440324DA5FD1F7955C1C13B6B466".to_owned(); let key = "97CD440324DA5FD1F7955C1C13B6B466";
let iv = "".to_owned(); let iv = "";
cipher_test(super::RC4_128, pt, ct, key, iv); cipher_test(super::RC4_128, pt, ct, key, iv);
} }