青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

S.l.e!ep.¢%

像打了激速一樣,以四倍的速度運轉,開心的工作
簡單、開放、平等的公司文化;尊重個性、自由與個人價值;
posts - 1098, comments - 335, trackbacks - 0, articles - 1
  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

about des_encrypt()

Posted on 2010-01-22 10:51 S.l.e!ep.¢% 閱讀(1128) 評論(0)  編輯 收藏 引用

des_encrypt() -- SSLeay 0.9.0b -- January 1999

NAME

des_encrypt, des_encrypt2, des_ecb_encrypt, des_cbc_encrypt, des_ncbc_encrypt,
des_xcbc_encrypt, des_pcbc_encrypt, des_cfb_encrypt, des_cfb64_encrypt,
des_ofb_encrypt, des_ofb64_encrypt -- DES encryption

SYNOPSIS

#include "des.h"

void des_encrypt(data,ks,enc)
unsigned long *data;
des_key_schedule ks; int enc;

void des_encrypt2(data,ks,enc)
unsigned long *data;
des_key_schedule ks; int enc;

void des_ecb_encrypt(input,output,ks,enc)
des_cblock *input, *output;
des_key_schedule ks; int enc;

void des_cbc_encrypt(input,output,length,ks,ivec,enc)
des_cblock *input, *output, *ivec;
long length;
des_key_schedule ks;
int enc;

void des_ncbc_encrypt(input,output,length,ks,ivec,enc)
des_cblock *input, *output, *ivec;
long length;
des_key_schedule ks;
int enc;

void des_xcbc_encrypt(input,output,length,ks,ivec,inw,outw,enc)
des_cblock *input, *output, *ivec, *inw, *outw;
des_cblock *output;
long length;
des_key_schedule ks;
int enc;

void des_pcbc_encrypt(input,output,length,ks,ivec,enc)
des_cblock *input, *output, *ivec;
long length;
des_key_schedule ks;
int enc;

void des_cfb_encrypt(in,out,numbits,length,ks,ivec,enc)
unsigned char *input, *output;
int numbits, enc;
long length;
des_key_schedule ks;
des_cblock *ivec;

void des_cfb64_encrypt(in,out,length,ks,ivec,num,enc)
unsigned char *in, *out;
long length;
des_key_schedule ks;
des_cblock *ivec;
int *num, enc;

void des_ofb_encrypt(in,out,numbits,length,ks,ivec)
unsigned char *in, *out;
int numbits;
long length;
des_key_schedule ks;
des_cblock *ivec;

void des_ofb64_encrypt(in,out,length,ks,ivec,num)
unsigned char *in, *out;
long length;
des_key_schedule ks;
des_cblock *ivec;
int *num;

DESCRIPTION

In any function prototype which has arguments input and output, the same variable can be passed for both arguments.

des_encrypt() is the basic building block used by all of the other DES encryption routines. It should be used only to implement a DES mode that the library doesn't already supply.

des_encrypt operates on data which is a pointer to two DES_LONGs (at least 4 characters per element, maybe more depending on how large a long is on your machine, but in that case, the extra bytes are treated as padding). In order to make this work right, each function implementing a DES mode does conversion of the input block, essentially a string of characters, to an array of DES_LONGs before invoking des_encrypt. After the encryption the function does the reverse conversion. Here's an example (from ecb_enc.c):

void des_ecb_encrypt(input, output, ks, encrypt)
des_cblock (*input);
des_cblock (*output);
des_key_schedule ks;
int encrypt;
        {
        register DES_LONG l;
        register unsigned char *in,*out;
        DES_LONG ll[2];

        in=(unsigned char *)input;
        out=(unsigned char *)output;
        c2l(in,l); ll[0]=l;
        c2l(in,l); ll[1]=l;
        des_encrypt(ll,ks,encrypt);
        l=ll[0]; l2c(l,out);
        l=ll[1]; l2c(l,out);
        l=ll[0]=ll[1]=0;
        }

ks is a previously-initialized des_key_schedule.

enc takes either the value DES_ENCRYPT, in which case encryption is performed, or DES_DECRYPT, in which case decryption is performed.

des_encrypt2() is identical to des_encrypt except that the DES initial permutation (IP) and final permutation (FP) have been left out. Again, this function should not be used except to implement new DES modes.

It is currently used to implement the various triple-DES modes.

(IP() des_encrypt2() des_encrypt2() des_encrypt2() FP()
is the same as
des_encrypt() des_encrypt() des_encrypt()
except faster :-).)

des_ecb_encrypt() is the Electronic Code Book form of DES, the most basic form of the algorithm. The des_cblock pointed to by input is encrypted into the block pointed to by output (which may be the same as input) using the key represented by ks. enc takes either the value DES_ENCRYPT, in which case encryption is performed, or DES_DECRYPT, in which case decryption is performed.

des_cbc_encrypt() implements DES in Cipher Block Chaining mode. The des_cblocks pointed to by input are encrypted (or decrypted) to the blocks pointed to by output.

Length should contain the number of des_cblocks * 8 (i.e. the total length of the input).

If length is not a multiple of 8, the results are unpredictable.

ivec is used to hold the output cipher text before calling the function again, if you are encrypting a text in several separate calls. This output is typically used in some way to modify the algorithm so that, if you use one of the chaining or feedback modes, encryption of the same block of text does not always give the same output (but encryption of the same block of text, with the same ivec in place, will typically give the same output).

See DES encryption modes overview for a discussion of the various modes.

For more details about the modes, see FIPS Pub 81: DES Modes of Operation; this is the updated version from May of 1996.

Unfortunately, this function does not automatically update ivec; the user must do it by copying in the last 8 bytes of output cipher text into ivec before the next call to this function.

ivec must be initialized to some known (but randomly generated) state before calling this function on the first chunk of data (and when you decrypt the data, the same initialization needs to be used for the first decryption call).

For example (from destest.c),

    des_cbc_encrypt((C_Block *)cbc_data,(C_Block *)cbc_out,
         (long)strlen((char *)cbc_data)+1,ks,
         (C_Block *)cbc_iv,DES_ENCRYPT);
    des_cbc_encrypt((C_Block *)cbc_out,(C_Block *)cbc_in,
         (long)strlen((char *)cbc_data)+1,ks,
         (C_Block *)cbc_iv,DES_DECRYPT);

where cbc_iv has been initialized previously by the user.

des_ncbc_encrypt() is identical to des_cbc_encrypt except that it does the update of ivec automatically. For tha reason it should be used in preference to des_cbc_encrypt whenever possible.

des_xcbc_encrypt() is RSA's DESX mode of DES. It uses inw and outw, supplied by the user, to 'whiten' the key. These should be nice random strings like the DES key unless the user is choosing them manually.

DESX is defined as key1 xor (des ( key2 xor input ) ), where the des encryption is done with a third key key3. Here, inw is keyn, and outw is keyn.

This substantially strengthens the algorithm against exhaustive search of the key space; see DES algorithm references for more details.

des_pcbc_encrypt() is the Propagating Cipher Block Chaining mode of DES. It is used by Kerberos v4. Its parameters are the same as des_ncbc_encrypt().

des_cfb_encrypt() is the Cipher Feedback mode of DES. This implementation 'feeds back' in numbit blocks. The input in) and the output out is in multiples of numbits bits, and numbit should be a multiple of 8 bits. length is the number of bytes in in.

If numbits is not a multiple of 8 bits, the extra bits in the bytes will be considered padding. For example, if numbits is 12, for each 2 input bytes, the 4 high bits of the second byte will be ignored. So to encode 72 bits when using numbits of 12 takes 12 bytes. To encode 72 bits when using numbits of 9 will take 16 bytes. To encode 80 bits when using numbits of 16 will take 10 bytes, and so on. This padding factor applies to both in and out.

ivec is used to keep intermediate results for subsequent calls, and as input to the function the first time it is called on a text.

It should be initialized to a known (but randomly generated) state before this function is called on the first part of a piece of data.

ks is a key schedule that has been previously set by des_set_key.

enc takes either the value DES_ENCRYPT, in which case encryption is performed, or DES_DECRYPT, in which case decryption is performed.

des_cfb64_encrypt() implements the Cipher Feedback Mode of DES, with 64 bit feedback. The arguments are the same as for des_cfb_encrypt except that there is no numbits argument, because there is no padding factor, and there is an additional num argument which is updated by the function along with ivec after each call.

The num argument is updated to show how many bytes of the ivec have been used; one step in the algorithm includes the xor of a byte of the plaintext with a byte of the (encrypted) ivec, so that all 8 bytes of the ivec are used in turn for an input block of 8 bytes. As each byte of the ivec is used, a new byte is created by the algorithm and stuffed into the ivec in place of the used byte. The following byte would be used next, and so on. num can be thought of as a pointer into the ivec to show which byte to start xor-ing with, the next time the function is called.

des_ofb_encrypt() is a implementation of the Output Feedback mode of DES. Its parameters are the same as those of des_cfb_encrypt() except that there is no < b>argument; encryption and decryption use the same arguments. in and out must be multiples of numbits long, numbits should be a multiple of 8 bits, and if it is not, the same padding factor comes into play.

Note that there is no enc parameter; this algorithm functions the same for encryption and decryption.

des_ofb64_encrypt() implements the Output Feedback Mode of DES, with 64 bit feedback. The arguments are the same as for des_cfb64_encrypt.


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲无线视频| 日韩视频一区二区三区在线播放免费观看| 亚洲人成77777在线观看网| 亚洲国产精品ⅴa在线观看| 欧美精品在线视频| 久久精品国产69国产精品亚洲| 猛干欧美女孩| 欧美在线视频播放| 国产午夜精品美女视频明星a级| 久久精品国产成人| 国产视频精品免费播放| 99国产精品久久久久久久| 亚洲一区二区高清视频| 亚洲国产成人av好男人在线观看| 亚洲欧洲日本一区二区三区| 国产欧美日韩综合精品二区| 亚洲韩国精品一区| 国产一区二区在线免费观看 | 亚洲午夜电影在线观看| 在线观看91久久久久久| 亚洲视频一起| 亚洲精品国产拍免费91在线| 香蕉久久国产| 亚洲一区二区精品视频| 免费成人av在线| 久久久国产精彩视频美女艺术照福利| 欧美激情一区在线| 米奇777在线欧美播放| 国产精品久久久久久久久免费樱桃 | 欧美顶级大胆免费视频| 久久久国际精品| 欧美理论视频| 欧美国产精品人人做人人爱| 国产一二三精品| 亚洲欧美日韩中文视频| 亚洲一级网站| 欧美日韩国产综合视频在线| 嫩草影视亚洲| 狠狠久久综合婷婷不卡| 午夜精品美女自拍福到在线| 99人久久精品视频最新地址| 可以看av的网站久久看| 欧美 日韩 国产在线| 狠狠色狠色综合曰曰| 午夜精品国产更新| 欧美中文字幕在线播放| 国产精品综合| 亚洲欧美日韩第一区| 亚洲欧美日韩爽爽影院| 国产精品久久久久久久7电影| 亚洲老板91色精品久久| 99在线精品视频| 欧美精品久久一区二区| 亚洲伦理在线| 亚洲男人的天堂在线观看 | 亚洲国产精品一区| 亚洲精品一二三| 欧美freesex8一10精品| 亚洲国产精品va在线观看黑人| 亚洲人体大胆视频| 欧美激情视频在线播放| 亚洲精品在线观看免费| 亚洲午夜激情| 国产乱理伦片在线观看夜一区| 亚洲一区视频| 欧美美女bbbb| 亚洲精品老司机| 亚洲乱码精品一二三四区日韩在线| 久久亚洲综合| 亚洲二区视频在线| 一区二区三区 在线观看视频| 欧美日韩一区二区免费视频| 一本色道久久88亚洲综合88| 欧美在线视频一区| 激情久久一区| 欧美激情在线有限公司| 亚洲视频精选在线| 久久人人97超碰国产公开结果| 亚洲第一中文字幕| 欧美激情精品久久久久久久变态| 亚洲精品中文字幕在线| 欧美专区日韩专区| 亚洲国产高清自拍| 国产精品成人aaaaa网站| 欧美在线观看天堂一区二区三区| 看欧美日韩国产| 一区二区av在线| 国产一区在线播放| 欧美激情久久久久| 羞羞漫画18久久大片| 欧美国产专区| 欧美一区二区免费观在线| 亚洲国产福利在线| 国产精品一区二区视频| 欧美h视频在线| 午夜精品一区二区在线观看| 亚洲国产女人aaa毛片在线| 午夜精品美女自拍福到在线| 亚洲自拍偷拍视频| 欧美成人精品三级在线观看| 午夜精品免费在线| 91久久久久久国产精品| 国产欧美另类| 欧美日韩三级视频| 久久这里只有精品视频首页| 一区二区三区黄色| 欧美激情视频一区二区三区免费 | 亚洲国产天堂久久国产91| 中国成人在线视频| 亚洲国产乱码最新视频| 国产欧美婷婷中文| 欧美日韩一区二区视频在线| 久久久精彩视频| 亚洲欧美国产日韩中文字幕| 亚洲欧洲在线免费| 欧美.www| 久久夜色精品国产欧美乱极品| 一区二区三区四区国产精品| 亚洲高清激情| 狠狠88综合久久久久综合网| 欧美性片在线观看| 欧美人交a欧美精品| 久久精品一区二区国产| 性欧美video另类hd性玩具| 亚洲视频一二区| 一区二区三区**美女毛片| 亚洲欧洲在线视频| 亚洲电影免费观看高清完整版在线观看 | 亚洲人午夜精品| 欧美福利网址| 性欧美大战久久久久久久久| 中文亚洲免费| 亚洲日韩中文字幕在线播放| 免费国产一区二区| 久久久精品一区| 欧美一区二区三区四区在线| 亚洲欧美一区二区三区极速播放| 亚洲图片欧美日产| 亚洲一区二区黄| 亚洲影音一区| 午夜在线a亚洲v天堂网2018| 亚洲视频第一页| 中文高清一区| 午夜一区二区三区在线观看| 欧美一级大片在线免费观看| 欧美一区二视频| 久久久久在线观看| 麻豆精品一区二区av白丝在线| 久久精品人人做人人爽| 久久久免费观看视频| 美女诱惑黄网站一区| 欧美高清自拍一区| 亚洲国产小视频| 亚洲精选一区| 亚洲女爱视频在线| 久久成人国产精品| 久热re这里精品视频在线6| 男男成人高潮片免费网站| 欧美精品xxxxbbbb| 欧美午夜精品理论片a级按摩 | 亚洲卡通欧美制服中文| 亚洲午夜精品一区二区| 欧美一区二区播放| 美国十次成人| 欧美日韩免费区域视频在线观看| 国产精品二区在线| 国语精品中文字幕| 日韩午夜精品| 羞羞视频在线观看欧美| 毛片av中文字幕一区二区| 91久久久国产精品| 亚洲免费网站| 欧美sm重口味系列视频在线观看| 欧美性猛片xxxx免费看久爱| 韩国av一区二区三区在线观看| 亚洲国产欧美一区二区三区丁香婷| 一区二区不卡在线视频 午夜欧美不卡在 | 欧美成人一区二区三区| 亚洲免费观看高清在线观看| 亚洲欧美日韩视频二区| 久久亚洲精品中文字幕冲田杏梨| 欧美精品v日韩精品v国产精品| 国产美女诱惑一区二区| 亚洲欧洲精品天堂一级| 先锋亚洲精品| 亚洲电影中文字幕| 亚洲欧美影音先锋| 欧美经典一区二区三区| 国产一区二区丝袜高跟鞋图片| 99视频精品全部免费在线| 久久影视精品| 亚洲素人一区二区| 欧美承认网站| 狠狠色狠狠色综合日日91app| 亚洲午夜视频在线| 亚洲福利在线视频| 久久久久久久激情视频| 国产精品入口日韩视频大尺度| 亚洲啪啪91| 嫩草成人www欧美|