-
一个出单程序,c#读取sql数据库。并回显
一个出单程序,c#读取sql数据库。并回显-out a single procedure, c# read sql database. And back significantly
- 2022-01-25 19:54:33下载
- 积分:1
-
C #考虑字符串分割方法的类型是不可能实现的了…
考虑到C#中的string类提供的Split方法无法实现针对串参数的分割,所以自己解决了。主要实现了对String类的扩展,使之支持string参数的Split。-C# taking into account the type of string Split method can not be realized against the division series parameters , and they therefore resolved. Major Implementation of the expansion of the String class that supports string parameters of Split.
- 2022-04-15 10:29:23下载
- 积分:1
-
c语言算法 大全《常用算法程序集(第四版)》
这份资料是第四版的C 常用算法程序集,方便初学者学习。
- 2018-04-16下载
- 积分:1
-
STM32移植加密算法
AES-128, AES-192, AES-256 bits. Supported modes are:
– ECB (Electronic Codebook Mode)
– CBC (Cipher-Block Chaining) with support for ciphertext stealing
– CTR (CounTer Mode)
– CCM (Counter with CBC-MAC)
– GCM (Galois Counter Mode)
– CMAC
– KEY WRAP
ARC4
DES, TripleDES. Supported modes are:
– ECB (Electronic Codebook Mode)
– CBC (Cipher-Block Chaining)
HASH functions with HMAC support:
– MD5
– SHA-1
– SHA-224
– SHA-256
Random engine based on DRBG-AES-128
RSA signature functions with PKCS#1v1.5
ECC (Elliptic Curve Cryptography):
– Key generation
– Scalar multiplication (the base for ECDH)
– ECDSA
- 2023-02-07 04:30:04下载
- 积分:1
-
c#计时器时间
掌握窗体设计步骤、窗体调用
2.学习Form窗体中控件的灵活使用,能基本理解所学代码的基本含义
3.会使用button、panel 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-10 00:15:41下载
- 积分:1
-
基于UCOSII的FATFS文件系统
这是基于STM32F407的文件系统开发,程序中用到了UCOSII系统,并且嵌入了FATFS文件系统,该程序可以将串口发送过来的数据按照时间排序,分列对齐的存入到SD卡中。
- 2022-11-07 07:10:04下载
- 积分:1
-
海思平台Live555移植代码
海思平台Live555移植代码,适合海思hi35系列,流媒体、rtsp、http的应用开发!
- 2022-11-21 23:20:03下载
- 积分:1
-
简单的聊天对话程序
简单的聊天对话程序-simple chat dialogue process
- 2022-01-23 11:14:44下载
- 积分:1
-
数字图像处理增加亮点和对比度
#include#includeusing namespace cv;int main() {Mat src,dst;src = imread("D:/ps/circle.png");int rows = src.rows;int cols = src.cols;float alpht = 1.8;float bea = 50;dst = Mat::zeros(src.size(), src.type());for (int row = 0; row < rows; row++) {for (int col = 0; col < cols; col++) {int b = src.at(row, col)[0];int g = src.at(row, col)[1];int r = src.at(row, col)[2];dst.at(row, col)[0] = saturate_cast(alpht*b + bea);dst.at(row, col)[1] = saturate_cast(alpht*g + bea);dst.at(row, col)[2] = saturate_cast(alpht*r + bea);}}namedWindow("s", CV_WINDOW_AUTOSIZE);namedWindow("d", CV_WINDOW_AUTOSIZE);imshow("s", src);imshow("d", dst);waitKey(0);r
- 2022-05-14 06:46:25下载
- 积分:1
-
简单自动机程序,实现基本运算符操作以及一些优先级的处理...
简单自动机程序,实现基本运算符操作以及一些优先级的处理-Simple automaton program to achieve the basic operator-level operations and the handling of a number of priority
- 2022-10-25 21:10:03下载
- 积分:1