搜索结果
找到约 123 项符合
byte 的查询结果
按分类筛选
- 全部分类
- 单片机开发 (22)
- 单片机编程 (12)
- Java编程 (11)
- 加密解密 (8)
- 汇编语言 (7)
- 嵌入式/单片机编程 (6)
- 其他 (5)
- 微处理器开发 (4)
- 技术资料 (4)
- VIP专区 (4)
- 数据结构 (3)
- 压缩解压 (3)
- uCOS (3)
- 数值算法/人工智能 (2)
- Delphi控件源码 (2)
- VHDL/FPGA/Verilog (2)
- 软件设计/软件工程 (2)
- DSP编程 (2)
- C/C++语言编程 (1)
- 仿真技术 (1)
- 接口技术 (1)
- 数学计算 (1)
- Applet (1)
- 书籍源码 (1)
- 文件格式 (1)
- J2ME (1)
- 其他书籍 (1)
- 磁盘编程 (1)
- Windows CE (1)
- 电子书籍 (1)
- 操作系统开发 (1)
- 数据库系统 (1)
- VC书籍 (1)
- 系统设计方案 (1)
- 通讯编程文档 (1)
- Linux/Unix编程 (1)
- 串口编程 (1)
- 书籍 (1)
- 源码 (1)
加密解密 RSA加长分段解密算法
RSA加长分段解密算法,界面操作。算法步骤如下:1. 读取私钥d和n,作解密之用。 2. 从EncText中读取一大段密文,再把该大段密文分成若干小段密文。 3. 使用d和n把所有小段密文进行解密成对应的小段密文sectByte[],再合成一大段明文字节数组Byte[],并转化成大段明文添加到DecText。 4. 读取下一大段密文,若密文为空,完成 ...
单片机开发 A collection of math routines including 8-bit, 16-bit, 32-bit signed and unsigned addition, subtract
A collection of math routines including 8-bit, 16-bit, 32-bit signed and unsigned addition, subtraction, multiplication, and division. Very nice code library with heavy in-line documentation! Been looking for multi-byte divide? Here it is.
单片机开发 51串行令牌格式 a51编译 Read data from serial port and write into buffer DPTR pointed in XRAM if a data
51串行令牌格式 a51编译
Read data from serial port
and write into buffer DPTR pointed in XRAM if a data frame is
received and calculate the check sum
if a information frame is received return control byte only
单片机开发 用C51实现的拼音输入法,这是改写的网友 embuffalo、独步上载在www.21ic.com自由发布区的由张凯原作的51上的拼音输入法程序。 原作使用了一个二维数组用以查表
用C51实现的拼音输入法,这是改写的网友 embuffalo、独步上载在www.21ic.com自由发布区的由张凯原作的51上的拼音输入法程序。
原作使用了一个二维数组用以查表,我认为这样比较的浪费空间,而且每个字表的索引地址要手工输入,效率不高。所以我用结构体将其改写了一下。就是大家现在看到的这个。
因为代码比较的大,共有6, ...
其他 可以将以bit为单位进行处理的算法扩展到8位
可以将以bit为单位进行处理的算法扩展到8位,即以Byte为单位进行处理。由于有8个bit,所以有2^8种选择。这样明显会使运行时
间大为减少,速度明显更快,但是也有它的缺点,即,占用资源太大,所以综合考虑速度和 资源两点,采用半字节查表法。即以半
Byte为单位进行处理。由于有4个bit,所以有2^4种选择。 ...
单片机开发 This example shows how to transmit and receive packets with packet length up to 255 bytes. The statu
This example shows how to transmit and receive packets with packet length up to 255 bytes. The status byte is polled every 200 us in a timer1 int.
单片机开发 This a two node test, requires a Coordinator and an RFD. The coordinator and node simply ping-pong
This a two node test, requires a Coordinator
and an RFD. The coordinator and node simply
ping-pong a packet back and forth, and print
out the RSSI byte. The RFD waits before
bouncing it back, while the coordinator responds
immediately.
数学计算 This unit uses an array of bytes to represent a LARGE number. The number is binairy-stored in the ar
This unit uses an array of bytes to represent a LARGE number. The number is binairy-stored in the array, with the Least Significant Byte (LSB) first and the Most Significant Byte (MSB) last, like all Intel-integer types.
加密解密 What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the poss
What Does the code DO? Sometimes we may desire to hide our file contents from others.One of the possible way is encrypting these files.Here a simple encryption technique is used(In VB - The same technique can be implemented in "c" also.) Program flow Explained * Open the File to be encrypted for Bin ...
书籍源码 #include "pch.h" #include "base64.h" NAMESPACE_BEGIN(CryptoPP) static const int MAX_LINE_LENG
#include "pch.h"
#include "base64.h"
NAMESPACE_BEGIN(CryptoPP)
static const int MAX_LINE_LENGTH = 72
static const byte vec[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
static const byte padding = =
Base64Encoder::Base64Encoder(BufferedTransformation *outQueue, boo ...