【源码最新资源】【h5交友源码】【强势股指标源码】x8f源码

2024-11-08 00:02:25 来源:autoestplat源码 分类:热点

1.哪位大哥能给我一个基于IDEA算法的源码源码最新资源c或者c++的软件以及源代码啊
2.MT29F2G08ABAEAW 内存用什么编程器
3.beyond compare密钥大全 beyond compare激活方法
4.带有以太网的MicroPython开发板: TPYBoardv201温湿度上传示例

x8f源码

哪位大哥能给我一个基于IDEA算法的c或者c++的软件以及源代码啊

       c++ code

       ////////////////////////////////////////////////////////

       //

       // Project: Implementation of IDEA (International

       // Data Encryption Algorithm)

       //

       // ECE Term Project

       // Winter

       // Author: Irwin Yoon

       //

       // Overview: This code does the following:

       // - print out all encryption and

       // decryption subkeys which are used

       // in the encryption and decryption

       // process

       // - encrypts plaintext message

       // - decrypts ciphertext message

       // - shows detailed, round by round results

       // (8 total)

       // Program contains a user driven menu where the user can select

       // initial -bit key and also select messages to decrypt

       // and encrypt.

       //

       // Compiling: This has been verified to work on SunOS

       // with g++ compiler (flop.engr.orst.edu).

       // To Compile: g++ Idea.cpp -o Idea.exe

       //

       // Note: This code is a little sloppy. Coding could

       // be made more efficient.

       //

       // Usage: Run executable with no arguments: Idea.exe

       // Then select appropriate menu options

       //

       //

       //

       //////////////////////////////////////////////

       // main() is at the bottom of file!

       #include <stdio.h>

       #include <iostream>

       #include <stdlib.h>

       #include <cassert>

       #include <string>

       //globals

       #define NUMSUBKEYS

       #define NUMROUNDS 8

       #define MAXINPUTSIZE

       // I had problems if we use #define with

       // these nums. Problem arose when taking

       // mod of this number

       unsigned int TWOPOWER = ;

       unsigned int TWOPOWER = ;

       unsigned int inputsize;

       // all the subkey information

       unsigned short esubkeys[NUMSUBKEYS];

       unsigned short dsubkeys[NUMSUBKEYS];

       unsigned int origkeyint[4];

       unsigned char origkeychar[];

       //

本文地址:http://5o.net.cn/news/73d67399253.html 欢迎转发