project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
91 lines
1.7 KiB
C
91 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2022 Rockchip Electronics Co. Ltd.
|
|
*/
|
|
#include <getopt.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "rkcrypto_demo.h"
|
|
|
|
static void guide(void)
|
|
{
|
|
printf("\n######## Entry one correct parameter. Example: librkcrypto_demo -a ########\n");
|
|
printf(" [-a]: OTPKEY_CIPHER\n");
|
|
printf(" [-b]: OTPKEY_CIPHER_VIRT\n");
|
|
printf(" [-c]: CIPHER\n");
|
|
printf(" [-d]: CIPHER_VIRT\n");
|
|
printf(" [-e]: HASH\n");
|
|
printf(" [-f]: HASH_VIRT\n");
|
|
printf(" [-g]: HMAC\n");
|
|
printf(" [-h]: HMAC_VIRT\n");
|
|
printf(" [-i]: RSA\n");
|
|
printf(" [-j]: AE\n");
|
|
printf(" [-k]: AE_VIRT\n");
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
RK_RES res = RK_CRYPTO_ERR_GENERIC;
|
|
int opt = 0;
|
|
const char *opt_string = "abcdefghijk";
|
|
|
|
if (argc < 2)
|
|
guide();
|
|
|
|
while ((opt = getopt(argc, argv, opt_string)) != -1) {
|
|
switch (opt) {
|
|
case 'a':
|
|
printf("TEST OTPKEY_CIPHER:\n");
|
|
res = demo_otpkey();
|
|
break;
|
|
case 'b':
|
|
printf("TEST OTPKEY_CIPHER_VIRT:\n");
|
|
res = demo_otpkey_virt();
|
|
break;
|
|
case 'c':
|
|
printf("TEST CIPHER:\n");
|
|
res = demo_cipher();
|
|
break;
|
|
case 'd':
|
|
printf("TEST CIPHER_VIRT:\n");
|
|
res = demo_cipher_virt();
|
|
break;
|
|
case 'e':
|
|
printf("TEST HASH:\n");
|
|
res = demo_hash();
|
|
break;
|
|
case 'f':
|
|
printf("TEST HASH_VIRT:\n");
|
|
res = demo_hash_virt();
|
|
break;
|
|
case 'g':
|
|
printf("TEST HMAC:\n");
|
|
res = demo_hmac();
|
|
break;
|
|
case 'h':
|
|
printf("TEST HMAC_VIRT:\n");
|
|
res = demo_hmac_virt();
|
|
break;
|
|
case 'i':
|
|
printf("TEST RSA:\n");
|
|
res = demo_rsa();
|
|
break;
|
|
case 'j':
|
|
printf("TEST AE:\n");
|
|
res = demo_ae();
|
|
break;
|
|
case 'k':
|
|
printf("TEST AE_VIRT:\n");
|
|
res = demo_ae_virt();
|
|
break;
|
|
case '?':
|
|
printf("error optopt: %c\n", optopt);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|