鱼C论坛

 找回密码
 立即注册
查看: 2954|回复: 3

[技术交流] 自己写的维吉利亚加解密程序,分享下

[复制链接]
发表于 2015-3-28 00:04:36 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 spy 于 2015-3-28 00:05 编辑

#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/timeb.h>

struct Node
{
        char data;
        struct Node *next;
};

struct TableNode
{
        char data;
        struct TableNode *prior, *next;
};

void CreateTable(struct TableNode **);
void CreateText(struct Node **);
void Encrypt(struct Node *, struct TableNode *, struct Node **);
void ShowKey(struct Node *);
void ShowText(struct Node *);
void Decrypt(struct Node *, struct TableNode *, struct Node *);

void main()
{
        struct Node *head=NULL, *key=NULL;
        struct TableNode *table=NULL;
        CreateTable(&table);
        printf("请输入要加密的明文(字母格式),以0结束输入:\n");
        CreateText(&head);
        Encrypt(head, table, &key);
        printf("密钥:\n");
        ShowKey(key);
        printf("加密后的密文: \n");
        ShowText(head);
        Decrypt(head, table, key);
        printf("解密后的明文: \n");
        ShowText(head);
}

void CreateTable(struct TableNode **table)
{
        struct TableNode *p, *q;
        char ch;
        *table = (struct TableNode *)malloc(sizeof(struct TableNode));
        p = *table;
        for(ch='a'; ch<='z'; ch++)
        {
                q = (struct TableNode *)malloc(sizeof(struct TableNode));
                q->data = ch;
                p->next = q;
                q->prior = p;
                p = q;
        }
        p->next = (*table)->next;
        (*table)->next->prior = p;
}

void CreateText(struct Node **head)
{
        struct Node *p, *q;
        char ch;
        while((ch=getchar())==10);
        *head = (struct Node *)malloc(sizeof(struct Node));
        p = *head;
        while(ch!='0')
        {
                q = (struct Node *)malloc(sizeof(struct Node));
                q->data = ch;
                p->next = q;
                p = q;
                fflush(stdin);
                while((ch=getchar())==10);
        }
        putchar('\n');
        p->next = NULL;
}

void Encrypt(struct Node *head, struct TableNode *table, struct Node **key)
{
        struct Node *p=head->next, *r, *s;
        struct TableNode *q;
        struct timeb timebuffer;
        int n;
        q = table->next;
        *key = (struct Node *)malloc(sizeof(struct Node));
        r = *key;
        ftime(&timebuffer);
        srand( (unsigned int)timebuffer.millitm );
        while(p!=NULL)
        {
                s = (struct Node *)malloc(sizeof(struct Node));
                s->data = rand()%100;
                n = (s->data)%26;
                while(q->data!=p->data)
                {
                        q = q->next;
                }
                while(n--)
                {
                        q = q->next;
                }
                p->data = q->data;
                r->next = s;
                r = s;
                p = p->next;
        }
        r->next = NULL;
}

void Decrypt(struct Node *head, struct TableNode *table, struct Node *key)
{
        struct Node *p=head->next, *r=key->next;
        struct TableNode *q=table->next;
        int n;
        while(p!=NULL)
        {
                while(q->data!=p->data)
                {
                        q = q->next;
                }
                n = (r->data)%26;
                while(n--)
                {
                        q = q->prior;
                }
                p->data = q->data;
                p = p->next;
                r = r->next;
        }
}

void ShowKey(struct Node *key)
{
        struct Node *p = key->next;
        while(p!=NULL)
        {
                printf("%2d ", p->data);
                p = p->next;
        }
        printf("\n\n");
}

void ShowText(struct Node *head)
{
        struct Node *p = head->next;
        while(p!=NULL)
        {
                printf("%2c ", p->data);
                p = p->next;
        }
        printf("\n\n");
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2015-4-4 11:52:56 | 显示全部楼层
支持楼主!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2015-4-7 02:14:58 | 显示全部楼层
支持lz
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2015-5-5 17:35:55 | 显示全部楼层
顶楼主
求源码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 05:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表