Rust使用AES进行加密解密

Rust使用AES进行加密解密

use crypto::aes;
use crypto::aes::KeySize::KeySize256;
use crypto::blockmodes::PkcsPadding;
use crypto::buffer::{ReadBuffer, RefReadBuffer, RefWriteBuffer, WriteBuffer};
use crypto::symmetriccipher::SymmetricCipherError;

/// Encrypt a buffer with the given key and iv using AES256/CBC/Pkcs encryption.
/// 加密(data:加密数据;key:密钥(长度为32的字符串);iv:偏移量(长度为16的字符串))
pub fn aes256_cbc_encrypt(
    data: &[u8],
    key: &str,
    iv: &str,
) -> Result<Vec<u8>, SymmetricCipherError> {
    let key = string_to_fixed_array_32(key);
    let iv = string_to_fixed_array_16(iv);
    let mut encryptor = aes::cbc_encryptor(
        KeySize256,
        &key, &iv,
        PkcsPadding,
    );

    let mut buffer = [0; 4096];
    let mut write_buffer = RefWriteBuffer::new(&mut buffer);
    let mut read_buffer = RefReadBuffer::new(data);
    let mut final_result = Vec::new();

    loop {
        let result = encryptor.encrypt(&mut read_buffer, &mut write_buffer, true)?;
        final_result.extend(write_buffer.take_read_buffer().take_remaining().iter().map(|&i| i));
        match result {
            crypto::buffer::BufferResult::BufferUnderflow => break,
            _ => continue,
        }
    }

    Ok(final_result)
}

/// Decrypt a buffer with the given key and iv using AES256/CBC/Pkcs encryption.
/// 解密(data:加密数据;key:密钥(长度为32的字符串);iv:偏移量(长度为16的字符串))
pub fn aes256_cbc_decrypt(
    data: &[u8],
    key: &str,
    iv: &str,
) -> Result<Vec<u8>, SymmetricCipherError> {
    let key = string_to_fixed_array_32(key);
    let iv = string_to_fixed_array_16(iv);

    let mut decryptor = aes::cbc_decryptor(
        KeySize256,
        &key, &iv,
        PkcsPadding,
    );

    let mut buffer = [0; 4096];
    let mut write_buffer = RefWriteBuffer::new(&mut buffer);
    let mut read_buffer = RefReadBuffer::new(data);
    let mut final_result = Vec::new();

    loop {
        let result = decryptor.decrypt(&mut read_buffer, &mut write_buffer, true)?;
        final_result.extend(write_buffer.take_read_buffer().take_remaining().iter().map(|&i| i));
        match result {
            crypto::buffer::BufferResult::BufferUnderflow => break,
            _ => continue,
        }
    }

    Ok(final_result)
}

/// 将字符串转为[u8; 32]
fn string_to_fixed_array_32(s: &str) -> [u8; 32] {
    s.as_bytes().try_into().expect("字符串转为[u8; 32]失败")
}

/// 将字符串转为[u8; 16]
fn string_to_fixed_array_16(s: &str) -> [u8; 16] {
    s.as_bytes().try_into().expect("字符串转为[u8; 16]失败")
}

#[test]
fn test_aes256_cbc() {
    // 设置key长度为32
    let key = "abcdefghijklmnopqrstuvwxyz123456";
    // 设置iv长度为16
    let iv = "1234567890123456";
    // 设置需要加密的字符串
    let data = "Hello, world!";
    // 加密操作
    let encrypted_data = aes256_cbc_encrypt(data.as_bytes(), &key, &iv).unwrap();
    // 解密操作
    let decrypted_data = aes256_cbc_decrypt(encrypted_data.as_slice(), &key, &iv).unwrap();
    // 转为原始字符串信息
    let result = std::str::from_utf8(decrypted_data.as_slice()).unwrap();

    assert_eq!(data, result);
    println!("{}", result);

}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值