上一页 1 2 3 4 5 6 ··· 24 下一页
摘要: Example: 在本地(local)上运行 ssh -L the-local-listening-port:localhost:the-host-listening-port root@server-host-addr 此时,在本地(local)上通过 localhost:the-local-li 阅读全文
posted @ 2022-11-21 01:17 panrui 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 开始学习bash的“编程”操作。 其实严格来说,这个脚本语言的语法是比较古老和特殊的,有很多不符合中国人习惯的东西。 因为在中国人的世界里,电脑键盘上面的使用shift才能输出来的字符从小就不太认识,但是在bash脚本中是必须要用的。 下面就是一个逻辑判断,变量定义的语句。仅仅是demo。没有实际作 阅读全文
posted @ 2022-10-16 15:03 panrui 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 在对csec的使用中(其他遵循hsm key update协议的芯片也适用),kdf的运算过程中遇到的数据都是128bit。不需要考虑padding的问题。目前并没有找到对padding的一致性的处理方式。 对于Miyaguchi-Preneel compression的具体计算过程,Wikiped 阅读全文
posted @ 2022-09-13 14:35 panrui 阅读(262) 评论(0) 推荐(0) 编辑
摘要: MinGW能够提供一个运行环境。 linux下面的软件能够在windows下面编译。 https://www.mingw-w64.org/ 阅读全文
posted @ 2022-08-27 01:40 panrui 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 如果我们只是靠随便网络上查找一个Speculative这个词的含义,是很难去理解的。但是我们通过查看英文原文去理解,可能就比较清楚地理解了: speculative (adjective) 1. based on guessing or on opinions that have been form 阅读全文
posted @ 2022-08-25 16:50 panrui 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 什么是cacheTo minimize the quantity of control information stored, the spatial locality property is used to group several locations together under the sa 阅读全文
posted @ 2022-08-25 16:08 panrui 阅读(164) 评论(0) 推荐(0) 编辑
摘要: Using the GNU Compiler Collection For gcc version 4.9.3 (GNU Tools for ARM Embedded Processors) In an assembler instruction using asm, you can specify 阅读全文
posted @ 2022-08-25 14:02 panrui 阅读(15) 评论(0) 推荐(0) 编辑
摘要: (出现的地址信息没有特定意义,仅供参考) vApplicationStackOverflowHook() at rtos.c:371 0x55aa vTaskSwitchContext() at tasks.c:2,892 0x3f4a PendSV_Handler() at port.c:435 阅读全文
posted @ 2022-08-25 13:58 panrui 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 操作系统中的stack。从freertos的手册中可以看到每个任务都需要有一个stack space。 Autosar的操作系统中配置也有同样的定义(和freertos的机制不同)。 这样做的必要性因为是多任务。任何一个task都可以被context switch发生时被打断,此时需要保存当前的函数 阅读全文
posted @ 2022-08-16 16:26 panrui 阅读(42) 评论(0) 推荐(0) 编辑
摘要: • How function parameters are passed in registers and on the stack;函数的参数传递是通过寄存器还是通过栈来传递的。 • How function values are returned;函数的返回是如何进行的。 • Which reg 阅读全文
posted @ 2022-08-08 13:27 panrui 阅读(86) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页