-
des algorithm implementation using c
简单的实现实现了des加密算法,代码简洁易懂。
密码学是一门古老的学科,在密码学发展的历史上,出现了多种加密方法,又很早的古典加密算法,后来又出现了更成熟的分组密码,公钥密码及流密码等,因为我只涉及了分组公钥密码,所以在这篇文章中就暂且先介绍分组密码,在说分组密码之前要说的就是密码学中常见的两种体制,一种是对称密码体制,一种是非对称密码体制,也叫公钥密码体制。
对称密码体制是指如果一个加密系统的加密密钥和解密密钥相同,或者虽然不同,但是由其中的任意一个可以很容易地推导出另一个,即密钥是双方
- 2023-07-28 12:00:02下载
- 积分:1
-
2D FDTD and plane wave expansion for the calculation of optical and microwave
2D的FDTD和平面波展开,用于光学和微波计算-2D FDTD and plane wave expansion for the calculation of optical and microwave
- 2022-03-19 16:19:45下载
- 积分:1
-
All relevant data mining algorithms and theory, there are detailed instructions,...
所有相关的数据挖掘算法和理论,都有详细的说明,有兴趣的可以下一步做
- 2023-01-27 06:20:05下载
- 积分:1
-
Householder method least squares problems. Avoid conventional methods encountere...
Householder法求解最小二乘问题。可以避免常规方法遇到奇异矩阵(即行列式|A|接近零)时误差太大的问题。本方法的精度非常高。-Householder method least squares problems. Avoid conventional methods encountered singular matrix (that is determinant | A | close to zero) error much of a problem. The accuracy of this method is very high.
- 2022-05-27 00:41:32下载
- 积分:1
-
复数运算库,可对复数进行加减和开方运算
复数运算库,可对复数进行加减和开方运算- The complex operation storehouse, may carry on the addition and
subtraction and the root to the plural number operates
- 2023-05-15 21:20:03下载
- 积分:1
-
插入排序C代码
对一个可排序数组A[],从右到左扫描这个有序的字数组,直到遇到第一个小于等于A[]的元素,然后把A[]插在该元素的后边。基于递归思想,从底至上地实现这个算法,效率会更高,也就是使用迭代。给定n个可排序的元素构成的一个数组A[],输出一个非降序排列的数组A[]。
- 2022-03-04 13:59:36下载
- 积分:1
-
MULLER s algorithm Muller classical algorithm
muller s algorithm 穆勒算法 经典-MULLER s algorithm Muller classical algorithm
- 2022-03-24 18:14:01下载
- 积分:1
-
九维的卡尔曼滤波跟踪算法,包括xyz三方向和各方向的位置,速度,加速度。...
九维的卡尔曼滤波跟踪算法,包括xyz三方向和各方向的位置,速度,加速度。-Nine-dimensional Kalman filter tracking algorithm, including the three xyz direction and the location of the direction, velocity, acceleration.
- 2022-04-18 23:39:23下载
- 积分:1
-
蒙特卡洛方法求PI
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Threading;
namespace WinRandomPI
{
public partial class GetPIValue : Form
- 2022-03-13 01:46:26下载
- 积分:1
-
基于堆的优先队列C语言实现
优先队列(priority_queue)和一般队列(queue)的函数接口一致,不同的是,优先队列每次出列的是整个队列中最小(或者最大)的元素。
本文简要介绍一种基于数组二叉堆实现的优先队列
详细出处参考:http://www.jb51.net/article/41978.htm
- 2022-03-13 04:05:17下载
- 积分:1