mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-16 11:28:54 +00:00
17 lines
414 B
Bash
17 lines
414 B
Bash
|
|
#!/bin/bash
|
||
|
|
#
|
||
|
|
# Copyright (c) 2022-2024, ArtInChip Technology Co., Ltd
|
||
|
|
#
|
||
|
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
#
|
||
|
|
# Authors: Xiong Hao <hao.xiong@artinchip.com>
|
||
|
|
#
|
||
|
|
|
||
|
|
if [ ! -f "set_aes_key.txt" ];then
|
||
|
|
openssl rand -hex 16 > set_aes_key.txt
|
||
|
|
fi
|
||
|
|
|
||
|
|
xxd -p -r set_aes_key.txt > spi_aes.key
|
||
|
|
xxd -c 16 -i spi_aes.key > spi_aes_key.h
|
||
|
|
cp spi_aes_key.h ../../../../../bsp/examples_bare/test-efuse/spi_aes_key.h
|