ferrijs-std 0.2.3

Node and web standard library for the ferrijs QuickJS runtime: WHATWG Streams, Events, AbortController, Buffer, crypto, fs, os, url, zlib and the capability model they enforce (partly derived from awslabs/llrt, Apache-2.0).
Documentation
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

//! AES cipher variant types for SubtleCrypto operations.
//! Only available when the `_rustcrypto` feature is enabled.

use aes::cipher::BlockModeDecrypt;
use aes::cipher::BlockModeEncrypt;

use aes::{
    cipher::{
        block_padding::{Error as PaddingError, Pkcs7},
        consts::{U12, U13, U14, U15, U16, U4, U8},
        InvalidLength, KeyIvInit, StreamCipher, StreamCipherError,
    },
    Aes128, Aes192, Aes256,
};
use aes_gcm::{
    aead::{Aead, Payload},
    AesGcm, KeyInit, Nonce,
};
use ctr::{Ctr128BE, Ctr32BE, Ctr64BE};

#[allow(dead_code)]
pub enum AesCbcEncVariant {
    Aes128(cbc::Encryptor<aes::Aes128>),
    Aes192(cbc::Encryptor<aes::Aes192>),
    Aes256(cbc::Encryptor<aes::Aes256>),
}

#[allow(dead_code)]
impl AesCbcEncVariant {
    pub fn new(key_len: u16, key: &[u8], iv: &[u8]) -> std::result::Result<Self, InvalidLength> {
        let variant: AesCbcEncVariant = match key_len {
            128 => Self::Aes128(cbc::Encryptor::new_from_slices(key, iv)?),
            192 => Self::Aes192(cbc::Encryptor::new_from_slices(key, iv)?),
            256 => Self::Aes256(cbc::Encryptor::new_from_slices(key, iv)?),
            _ => return Err(InvalidLength),
        };

        Ok(variant)
    }

    pub fn encrypt(self, data: &[u8]) -> Vec<u8> {
        match self {
            Self::Aes128(v) => v.encrypt_padded_vec::<Pkcs7>(data),
            Self::Aes192(v) => v.encrypt_padded_vec::<Pkcs7>(data),
            Self::Aes256(v) => v.encrypt_padded_vec::<Pkcs7>(data),
        }
    }
}

#[allow(dead_code)]
pub enum AesCbcDecVariant {
    Aes128(cbc::Decryptor<aes::Aes128>),
    Aes192(cbc::Decryptor<aes::Aes192>),
    Aes256(cbc::Decryptor<aes::Aes256>),
}

#[allow(dead_code)]
impl AesCbcDecVariant {
    pub fn new(key_len: u16, key: &[u8], iv: &[u8]) -> std::result::Result<Self, InvalidLength> {
        let variant: AesCbcDecVariant = match key_len {
            128 => Self::Aes128(cbc::Decryptor::new_from_slices(key, iv)?),
            192 => Self::Aes192(cbc::Decryptor::new_from_slices(key, iv)?),
            256 => Self::Aes256(cbc::Decryptor::new_from_slices(key, iv)?),
            _ => return Err(InvalidLength),
        };

        Ok(variant)
    }

    pub fn decrypt(self, data: &[u8]) -> std::result::Result<Vec<u8>, PaddingError> {
        Ok(match self {
            Self::Aes128(v) => v.decrypt_padded_vec::<Pkcs7>(data)?,
            Self::Aes192(v) => v.decrypt_padded_vec::<Pkcs7>(data)?,
            Self::Aes256(v) => v.decrypt_padded_vec::<Pkcs7>(data)?,
        })
    }
}

#[allow(dead_code)]
pub enum AesCtrVariant {
    Aes128Ctr32(Ctr32BE<aes::Aes128>),
    Aes128Ctr64(Ctr64BE<aes::Aes128>),
    Aes128Ctr128(Ctr128BE<aes::Aes128>),
    Aes192Ctr32(Ctr32BE<aes::Aes192>),
    Aes192Ctr64(Ctr64BE<aes::Aes192>),
    Aes192Ctr128(Ctr128BE<aes::Aes192>),
    Aes256Ctr32(Ctr32BE<aes::Aes256>),
    Aes256Ctr64(Ctr64BE<aes::Aes256>),
    Aes256Ctr128(Ctr128BE<aes::Aes256>),
}

#[allow(dead_code)]
impl AesCtrVariant {
    pub fn new(
        key_len: u16,
        encryption_length: u32,
        key: &[u8],
        counter: &[u8],
    ) -> std::result::Result<Self, InvalidLength> {
        let variant: AesCtrVariant = match (key_len, encryption_length) {
            (128, 32) => Self::Aes128Ctr32(Ctr32BE::new_from_slices(key, counter)?),
            (128, 64) => Self::Aes128Ctr64(Ctr64BE::new_from_slices(key, counter)?),
            (128, 128) => Self::Aes128Ctr128(Ctr128BE::new_from_slices(key, counter)?),
            (192, 32) => Self::Aes192Ctr32(Ctr32BE::new_from_slices(key, counter)?),
            (192, 64) => Self::Aes192Ctr64(Ctr64BE::new_from_slices(key, counter)?),
            (192, 128) => Self::Aes192Ctr128(Ctr128BE::new_from_slices(key, counter)?),
            (256, 32) => Self::Aes256Ctr32(Ctr32BE::new_from_slices(key, counter)?),
            (256, 64) => Self::Aes256Ctr64(Ctr64BE::new_from_slices(key, counter)?),
            (256, 128) => Self::Aes256Ctr128(Ctr128BE::new_from_slices(key, counter)?),
            _ => return Err(InvalidLength),
        };

        Ok(variant)
    }

    pub fn encrypt(&mut self, data: &[u8]) -> std::result::Result<Vec<u8>, StreamCipherError> {
        let mut ciphertext = data.to_vec();
        match self {
            Self::Aes128Ctr32(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes128Ctr64(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes128Ctr128(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes192Ctr32(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes192Ctr64(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes192Ctr128(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes256Ctr32(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes256Ctr64(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes256Ctr128(v) => v.try_apply_keystream(&mut ciphertext)?,
        }
        Ok(ciphertext)
    }

    pub fn decrypt(&mut self, data: &[u8]) -> std::result::Result<Vec<u8>, StreamCipherError> {
        let mut ciphertext = data.to_vec();
        match self {
            Self::Aes128Ctr32(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes128Ctr64(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes128Ctr128(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes192Ctr32(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes192Ctr64(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes192Ctr128(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes256Ctr32(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes256Ctr64(v) => v.try_apply_keystream(&mut ciphertext)?,
            Self::Aes256Ctr128(v) => v.try_apply_keystream(&mut ciphertext)?,
        }
        Ok(ciphertext)
    }
}

pub enum AesGcmVariant {
    Aes128Gcm32(AesGcm<Aes128, U12, U4>),
    Aes192Gcm32(AesGcm<Aes192, U12, U4>),
    Aes256Gcm32(AesGcm<Aes256, U12, U4>),
    Aes128Gcm64(AesGcm<Aes128, U12, U8>),
    Aes192Gcm64(AesGcm<Aes192, U12, U8>),
    Aes256Gcm64(AesGcm<Aes256, U12, U8>),
    Aes128Gcm96(AesGcm<Aes128, U12, U12>),
    Aes192Gcm96(AesGcm<Aes192, U12, U12>),
    Aes256Gcm96(AesGcm<Aes256, U12, U12>),
    Aes128Gcm104(AesGcm<Aes128, U12, U13>),
    Aes192Gcm104(AesGcm<Aes192, U12, U13>),
    Aes256Gcm104(AesGcm<Aes256, U12, U13>),
    Aes128Gcm112(AesGcm<Aes128, U12, U14>),
    Aes192Gcm112(AesGcm<Aes192, U12, U14>),
    Aes256Gcm112(AesGcm<Aes256, U12, U14>),
    Aes128Gcm120(AesGcm<Aes128, U12, U15>),
    Aes192Gcm120(AesGcm<Aes192, U12, U15>),
    Aes256Gcm120(AesGcm<Aes256, U12, U15>),
    Aes128Gcm128(AesGcm<Aes128, U12, U16>),
    Aes192Gcm128(AesGcm<Aes192, U12, U16>),
    Aes256Gcm128(AesGcm<Aes256, U12, U16>),
}

#[allow(dead_code)]
impl AesGcmVariant {
    pub fn new(
        key_len: u16,
        tag_length: u8,
        key: &[u8],
    ) -> std::result::Result<Self, InvalidLength> {
        let variant = match (key_len, tag_length) {
            (128, 32) => Self::Aes128Gcm32(AesGcm::new_from_slice(key)?),
            (192, 32) => Self::Aes192Gcm32(AesGcm::new_from_slice(key)?),
            (256, 32) => Self::Aes256Gcm32(AesGcm::new_from_slice(key)?),
            (128, 64) => Self::Aes128Gcm64(AesGcm::new_from_slice(key)?),
            (192, 64) => Self::Aes192Gcm64(AesGcm::new_from_slice(key)?),
            (256, 64) => Self::Aes256Gcm64(AesGcm::new_from_slice(key)?),
            (128, 96) => Self::Aes128Gcm96(AesGcm::new_from_slice(key)?),
            (192, 96) => Self::Aes192Gcm96(AesGcm::new_from_slice(key)?),
            (256, 96) => Self::Aes256Gcm96(AesGcm::new_from_slice(key)?),
            (128, 104) => Self::Aes128Gcm104(AesGcm::new_from_slice(key)?),
            (192, 104) => Self::Aes192Gcm104(AesGcm::new_from_slice(key)?),
            (256, 104) => Self::Aes256Gcm104(AesGcm::new_from_slice(key)?),
            (128, 112) => Self::Aes128Gcm112(AesGcm::new_from_slice(key)?),
            (192, 112) => Self::Aes192Gcm112(AesGcm::new_from_slice(key)?),
            (256, 112) => Self::Aes256Gcm112(AesGcm::new_from_slice(key)?),
            (128, 120) => Self::Aes128Gcm120(AesGcm::new_from_slice(key)?),
            (192, 120) => Self::Aes192Gcm120(AesGcm::new_from_slice(key)?),
            (256, 120) => Self::Aes256Gcm120(AesGcm::new_from_slice(key)?),
            (128, 128) => Self::Aes128Gcm128(AesGcm::new_from_slice(key)?),
            (192, 128) => Self::Aes192Gcm128(AesGcm::new_from_slice(key)?),
            (256, 128) => Self::Aes256Gcm128(AesGcm::new_from_slice(key)?),
            _ => return Err(InvalidLength),
        };

        Ok(variant)
    }

    pub fn encrypt(
        &self,
        nonce: &[u8],
        msg: &[u8],
        aad: Option<&[u8]>,
    ) -> std::result::Result<Vec<u8>, aes_gcm::Error> {
        let plaintext: Payload = Payload {
            msg,
            aad: aad.unwrap_or_default(),
        };
        let nonce: &ctr::cipher::Array<_, _> =
            &Nonce::<U12>::try_from(nonce).map_err(|_| aes_gcm::Error)?;
        match self {
            Self::Aes128Gcm32(v) => v.encrypt(nonce, plaintext),
            Self::Aes192Gcm32(v) => v.encrypt(nonce, plaintext),
            Self::Aes256Gcm32(v) => v.encrypt(nonce, plaintext),
            Self::Aes128Gcm64(v) => v.encrypt(nonce, plaintext),
            Self::Aes192Gcm64(v) => v.encrypt(nonce, plaintext),
            Self::Aes256Gcm64(v) => v.encrypt(nonce, plaintext),
            Self::Aes128Gcm96(v) => v.encrypt(nonce, plaintext),
            Self::Aes192Gcm96(v) => v.encrypt(nonce, plaintext),
            Self::Aes256Gcm96(v) => v.encrypt(nonce, plaintext),
            Self::Aes128Gcm104(v) => v.encrypt(nonce, plaintext),
            Self::Aes192Gcm104(v) => v.encrypt(nonce, plaintext),
            Self::Aes256Gcm104(v) => v.encrypt(nonce, plaintext),
            Self::Aes128Gcm112(v) => v.encrypt(nonce, plaintext),
            Self::Aes192Gcm112(v) => v.encrypt(nonce, plaintext),
            Self::Aes256Gcm112(v) => v.encrypt(nonce, plaintext),
            Self::Aes128Gcm120(v) => v.encrypt(nonce, plaintext),
            Self::Aes192Gcm120(v) => v.encrypt(nonce, plaintext),
            Self::Aes256Gcm120(v) => v.encrypt(nonce, plaintext),
            Self::Aes128Gcm128(v) => v.encrypt(nonce, plaintext),
            Self::Aes192Gcm128(v) => v.encrypt(nonce, plaintext),
            Self::Aes256Gcm128(v) => v.encrypt(nonce, plaintext),
        }
    }

    pub fn decrypt(
        &self,
        nonce: &[u8],
        msg: &[u8],
        aad: Option<&[u8]>,
    ) -> std::result::Result<Vec<u8>, aes_gcm::Error> {
        let ciphertext: Payload = Payload {
            msg,
            aad: aad.unwrap_or_default(),
        };
        let nonce: &ctr::cipher::Array<_, _> =
            &Nonce::<U12>::try_from(nonce).map_err(|_| aes_gcm::Error)?;
        match self {
            Self::Aes128Gcm32(v) => v.decrypt(nonce, ciphertext),
            Self::Aes192Gcm32(v) => v.decrypt(nonce, ciphertext),
            Self::Aes256Gcm32(v) => v.decrypt(nonce, ciphertext),
            Self::Aes128Gcm64(v) => v.decrypt(nonce, ciphertext),
            Self::Aes192Gcm64(v) => v.decrypt(nonce, ciphertext),
            Self::Aes256Gcm64(v) => v.decrypt(nonce, ciphertext),
            Self::Aes128Gcm96(v) => v.decrypt(nonce, ciphertext),
            Self::Aes192Gcm96(v) => v.decrypt(nonce, ciphertext),
            Self::Aes256Gcm96(v) => v.decrypt(nonce, ciphertext),
            Self::Aes128Gcm104(v) => v.decrypt(nonce, ciphertext),
            Self::Aes192Gcm104(v) => v.decrypt(nonce, ciphertext),
            Self::Aes256Gcm104(v) => v.decrypt(nonce, ciphertext),
            Self::Aes128Gcm112(v) => v.decrypt(nonce, ciphertext),
            Self::Aes192Gcm112(v) => v.decrypt(nonce, ciphertext),
            Self::Aes256Gcm112(v) => v.decrypt(nonce, ciphertext),
            Self::Aes128Gcm120(v) => v.decrypt(nonce, ciphertext),
            Self::Aes192Gcm120(v) => v.decrypt(nonce, ciphertext),
            Self::Aes256Gcm120(v) => v.decrypt(nonce, ciphertext),
            Self::Aes128Gcm128(v) => v.decrypt(nonce, ciphertext),
            Self::Aes192Gcm128(v) => v.decrypt(nonce, ciphertext),
            Self::Aes256Gcm128(v) => v.decrypt(nonce, ciphertext),
        }
    }
}