def _raw_aes_providers()

in features/awses_message_encryption_utils.py [0:0]


def _raw_aes_providers(keys):
    """Build all AES Raw Master Key configurations to test.

    :param dict keys: Parsed keys manifest
    """
    for name, key in _keys_for_algorithm("aes", keys):
        # Single AES Symmetric Static Raw MasterKey, which can be decrypted
        yield (
            {
                "type": "raw",
                "key": name,
                "provider-id": "aws-raw-vectors-persistant",
                "encryption-algorithm": "aes",
            },
        )