1# This file is dual licensed under the terms of the Apache License, Version 2# 2.0, and the BSD License. See the LICENSE file in the root of this repository 3# for complete details. 4 5from __future__ import absolute_import, division, print_function 6 7INCLUDES = """ 8#include <openssl/aes.h> 9""" 10 11TYPES = """ 12typedef ... AES_KEY; 13""" 14 15FUNCTIONS = """ 16int AES_wrap_key(AES_KEY *, const unsigned char *, unsigned char *, 17 const unsigned char *, unsigned int); 18int AES_unwrap_key(AES_KEY *, const unsigned char *, unsigned char *, 19 const unsigned char *, unsigned int); 20""" 21 22CUSTOMIZATIONS = """ 23""" 24