#![allow(missing_docs)]
#![allow(unused_must_use)]
#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(non_snake_case)]
pub fn main()
{
bigcryptor64_encrypt_ctr();
bigcryptor64_encrypt_ctr_into_vec();
bigcryptor64_encrypt_ctr_into_array();
bigcryptor64_encrypt_str_ctr();
bigcryptor64_encrypt_str_ctr_into_vec();
bigcryptor64_encrypt_str_ctr_into_array();
bigcryptor64_encrypt_string_ctr();
bigcryptor64_encrypt_string_ctr_into_vec();
bigcryptor64_encrypt_string_ctr_into_array();
bigcryptor64_encrypt_vec_ctr();
bigcryptor64_encrypt_vec_ctr_into_vec();
bigcryptor64_encrypt_vec_ctr_into_array();
bigcryptor64_encrypt_array_ctr();
bigcryptor64_encrypt_array_ctr_into_vec();
bigcryptor64_encrypt_array_ctr_into_array();
bigcryptor64_decrypt_ctr();
bigcryptor64_decrypt_ctr_into_vec();
bigcryptor64_decrypt_ctr_into_array();
bigcryptor64_decrypt_ctr_into_string();
bigcryptor64_decrypt_vec_ctr();
bigcryptor64_decrypt_vec_ctr_into_vec();
bigcryptor64_decrypt_vec_ctr_into_array();
bigcryptor64_decrypt_vec_ctr_into_string();
bigcryptor64_decrypt_array_ctr();
bigcryptor64_decrypt_array_ctr_into_vec();
bigcryptor64_decrypt_array_ctr_into_array();
bigcryptor64_decrypt_array_ctr_into_string();
}
fn bigcryptor64_encrypt_ctr()
{
println!("bigcryptor64_encrypt_ctr()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = [0_u8; 55];
tdes.encrypt(nonce, message.as_ptr(), message.len() as u64, cipher.as_mut_ptr());
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_ctr_into_vec()
{
println!("bigcryptor64_encrypt_ctr_into_vec()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_into_vec(nonce, message.as_ptr(), message.len() as u64, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_ctr_into_array()
{
println!("bigcryptor64_encrypt_ctr_into_array()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = [0_u8; 55];
tdes.encrypt_into_array(nonce, message.as_ptr(), message.len() as u64, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_str_ctr()
{
println!("bigcryptor64_encrypt_str_ctr()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = [0_u8; 55];
tdes.encrypt_str(nonce, &message, cipher.as_mut_ptr());
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_str_ctr_into_vec()
{
println!("bigcryptor64_encrypt_str_ctr_into_vec()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_str_ctr_into_array()
{
println!("bigcryptor64_encrypt_str_ctr_into_array()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
let mut cipher = [0_u8; 55];
tdes.encrypt_str_into_array(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_string_ctr()
{
println!("bigcryptor64_encrypt_string_ctr()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.".to_string();
let mut cipher = [0_u8; 55];
tdes.encrypt_string(nonce, &message, cipher.as_mut_ptr());
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_string_ctr_into_vec()
{
println!("bigcryptor64_encrypt_string_ctr_into_vec()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.".to_string();
let mut cipher = Vec::<u8>::new();
tdes.encrypt_string_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_string_ctr_into_array()
{
println!("bigcryptor64_encrypt_string_ctr_into_array()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.".to_string();
let mut cipher = [0_u8; 55];
tdes.encrypt_string_into_array(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_vec_ctr()
{
println!("bigcryptor64_encrypt_vec_ctr()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let message = unsafe { message.to_string().as_mut_vec().clone() };
let mut cipher = [0_u8; 55];
tdes.encrypt_vec(nonce, &message, cipher.as_mut_ptr());
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_vec_ctr_into_vec()
{
println!("bigcryptor64_encrypt_vec_ctr_into_vec()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let message = unsafe { message.to_string().as_mut_vec().clone() };
let mut cipher = Vec::<u8>::new();
tdes.encrypt_vec_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_vec_ctr_into_array()
{
println!("bigcryptor64_encrypt_vec_ctr_into_array()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let message = unsafe { message.to_string().as_mut_vec().clone() };
let mut cipher = [0_u8; 55];
tdes.encrypt_vec_into_array(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_array_ctr()
{
println!("bigcryptor64_encrypt_array_ctr()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let mes = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", mes);
let mut message = [0_u8; 55];
message.copy_from_slice(mes.as_bytes());
let mut cipher = [0_u8; 55];
tdes.encrypt_array(nonce, &message, cipher.as_mut_ptr());
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_array_ctr_into_vec()
{
println!("bigcryptor64_encrypt_array_ctr_into_vec()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let mes = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", mes);
let mut message = [0_u8; 55];
message.copy_from_slice(mes.as_bytes());
let mut cipher = Vec::<u8>::new();
tdes.encrypt_array_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_encrypt_array_ctr_into_array()
{
println!("bigcryptor64_encrypt_array_ctr_into_array()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let mes = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", mes);
let mut message = [0_u8; 55];
message.copy_from_slice(mes.as_bytes());
let mut cipher = [0_u8; 55];
tdes.encrypt_array_into_array(nonce, &message, &mut cipher);
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
println!("-------------------------------");
}
fn bigcryptor64_decrypt_ctr()
{
println!("bigcryptor64_decrypt_ctr()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = vec![0; 55];
tdes.decrypt(nonce, cipher.as_ptr(), cipher.len() as u64, recovered.as_mut_ptr());
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.append(&mut recovered);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_ctr_into_vec()
{
println!("bigcryptor64_decrypt_ctr_into_vec()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = Vec::<u8>::new();
tdes.decrypt_into_vec(nonce, cipher.as_ptr(), cipher.len() as u64, &mut recovered);
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.append(&mut recovered);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_ctr_into_array()
{
println!("bigcryptor64_decrypt_ctr_into_array()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = [0u8; 56];
let len = tdes.decrypt_into_array(nonce, cipher.as_ptr(), cipher.len() as u64, &mut recovered);
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E 00 ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.write(&recovered);
unsafe { converted.as_mut_vec() }.truncate(len as usize);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_ctr_into_string()
{
println!("bigcryptor64_decrypt_ctr_into_string()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = String::new();
tdes.decrypt_into_string(nonce, cipher.as_ptr(), cipher.len() as u64, &mut recovered);
println!("B =\t{}", recovered);
assert_eq!(recovered, "In the beginning God created the heavens and the earth.");
assert_eq!(recovered, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_vec_ctr()
{
println!("bigcryptor64_decrypt_vec_ctr()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = vec![0; 55];
tdes.decrypt_vec(nonce, &cipher, recovered.as_mut_ptr());
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.append(&mut recovered);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_vec_ctr_into_vec()
{
println!("bigcryptor64_decrypt_vec_ctr_into_vec()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = Vec::<u8>::new();
tdes.decrypt_vec_into_vec(nonce, &cipher, &mut recovered);
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.append(&mut recovered);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_vec_ctr_into_array()
{
println!("bigcryptor64_decrypt_vec_ctr_into_array()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = [0u8; 56];
let len = tdes.decrypt_vec_into_array(nonce, &cipher, &mut recovered);
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E 00 ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.write(&recovered);
unsafe { converted.as_mut_vec() }.truncate(len as usize);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_vec_ctr_into_string()
{
println!("bigcryptor64_decrypt_vec_ctr_into_string()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message);
let mut cipher = Vec::<u8>::new();
tdes.encrypt_str_into_vec(nonce, &message, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = String::new();
tdes.decrypt_vec_into_string(nonce, &cipher, &mut recovered);
println!("B =\t{}", recovered);
assert_eq!(recovered, "In the beginning God created the heavens and the earth.");
assert_eq!(recovered, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_array_ctr()
{
println!("bigcryptor64_decrypt_array_ctr()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message); let mut cipher = [0_u8; 55];
tdes.encrypt_into_array(nonce, message.as_ptr(), message.len() as u64, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = vec![0; 55];
let len = tdes.decrypt_array(nonce, &cipher, recovered.as_mut_ptr());
recovered.truncate(len as usize);
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.append(&mut recovered);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_array_ctr_into_vec()
{
println!("bigcryptor64_decrypt_array_ctr_into_vec()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message); let mut cipher = [0_u8; 55];
tdes.encrypt_into_array(nonce, message.as_ptr(), message.len() as u64, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = Vec::<u8>::new();
tdes.decrypt_array_into_vec(nonce, &cipher, &mut recovered);
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.append(&mut recovered);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_array_ctr_into_array()
{
println!("bigcryptor64_decrypt_array_ctr_into_array()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message); let mut cipher = [0_u8; 55];
tdes.encrypt_into_array(nonce, message.as_ptr(), message.len() as u64, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = [0u8; 56];
let len = tdes.decrypt_array_into_array(nonce, &cipher, &mut recovered);
print!("Ba =\t");
for b in recovered.clone()
{ print!("{:02X} ", b); }
println!();
let mut txt = String::new();
for c in recovered.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "49 6E 20 74 68 65 20 62 65 67 69 6E 6E 69 6E 67 20 47 6F 64 20 63 72 65 61 74 65 64 20 74 68 65 20 68 65 61 76 65 6E 73 20 61 6E 64 20 74 68 65 20 65 61 72 74 68 2E 00 ");
let mut converted = String::new();
unsafe { converted.as_mut_vec() }.write(&recovered);
unsafe { converted.as_mut_vec() }.truncate(len as usize);
println!("Bb =\t{}", converted);
assert_eq!(converted, "In the beginning God created the heavens and the earth.");
assert_eq!(converted, message);
println!("-------------------------------");
}
fn bigcryptor64_decrypt_array_ctr_into_string()
{
println!("bigcryptor64_decrypt_array_ctr_into_string()");
use std::io::Write;
use std::fmt::Write as _;
use cryptocol::symmetric::{ BigCryptor64, DES, CTR };
let mut tdes = DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64)
+ DES::decryptor_with_key_u64(0x_FEDCBA0987654321_u64)
+ DES::encryptor_with_key_u64(0x_1234567890ABCDEF_u64);
let nonce = 0x_FEDCBA0987654321_u64;
println!("Nonce = {:#018X}", nonce);
let message = "In the beginning God created the heavens and the earth.";
println!("M =\t{}", message); let mut cipher = [0_u8; 55];
tdes.encrypt_into_array(nonce, message.as_ptr(), message.len() as u64, &mut cipher);
print!("C =\t");
for c in cipher.clone()
{ print!("{:02X} ", c); }
println!();
let mut txt = String::new();
for c in cipher.clone()
{ write!(txt, "{:02X} ", c); }
assert_eq!(txt, "AE EA 58 8D 8D 8F E9 58 AE A5 40 76 D9 77 48 3F 72 CD 46 C1 50 97 0E C3 FD 7F C2 65 53 AA DF E8 17 86 76 4E A0 F9 2B 7E D9 79 DA 38 AC F9 EE 51 F3 3E 0A 6C 25 75 68 ");
let mut recovered = String::new();
tdes.decrypt_array_into_string(nonce, &cipher, &mut recovered);
println!("B =\t{}", recovered);
assert_eq!(recovered, "In the beginning God created the heavens and the earth.");
assert_eq!(recovered, message);
println!("-------------------------------");
}