Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
c236e66d
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c236e66d
编写于
2月 05, 2000
作者:
U
Ulf Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Document RC4.
上级
981b87f7
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
62 addition
and
4 deletion
+62
-4
crypto/rc4/rc4.h
crypto/rc4/rc4.h
+2
-2
crypto/rc4/rc4_enc.c
crypto/rc4/rc4_enc.c
+1
-1
crypto/rc4/rc4_skey.c
crypto/rc4/rc4_skey.c
+1
-1
doc/crypto/rc4.pod
doc/crypto/rc4.pod
+58
-0
未找到文件。
crypto/rc4/rc4.h
浏览文件 @
c236e66d
...
...
@@ -77,8 +77,8 @@ typedef struct rc4_key_st
const
char
*
RC4_options
(
void
);
void
RC4_set_key
(
RC4_KEY
*
key
,
int
len
,
unsigned
char
*
data
);
void
RC4
(
RC4_KEY
*
key
,
unsigned
long
len
,
unsigned
char
*
indata
,
void
RC4_set_key
(
RC4_KEY
*
key
,
int
len
,
const
unsigned
char
*
data
);
void
RC4
(
RC4_KEY
*
key
,
unsigned
long
len
,
const
unsigned
char
*
indata
,
unsigned
char
*
outdata
);
#ifdef __cplusplus
...
...
crypto/rc4/rc4_enc.c
浏览文件 @
c236e66d
...
...
@@ -67,7 +67,7 @@
* Date: Wed, 14 Sep 1994 06:35:31 GMT
*/
void
RC4
(
RC4_KEY
*
key
,
unsigned
long
len
,
unsigned
char
*
indata
,
void
RC4
(
RC4_KEY
*
key
,
unsigned
long
len
,
const
unsigned
char
*
indata
,
unsigned
char
*
outdata
)
{
register
RC4_INT
*
d
;
...
...
crypto/rc4/rc4_skey.c
浏览文件 @
c236e66d
...
...
@@ -85,7 +85,7 @@ const char *RC4_options(void)
* Date: Wed, 14 Sep 1994 06:35:31 GMT
*/
void
RC4_set_key
(
RC4_KEY
*
key
,
int
len
,
register
unsigned
char
*
data
)
void
RC4_set_key
(
RC4_KEY
*
key
,
int
len
,
const
unsigned
char
*
data
)
{
register
RC4_INT
tmp
;
register
int
id1
,
id2
;
...
...
doc/crypto/rc4.pod
0 → 100644
浏览文件 @
c236e66d
=pod
=head1 NAME
RC4_set_key, RC4 - RC4 encryption
=head1 SYNOPSIS
#include <openssl/rc4.h>
void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata,
unsigned char *outdata);
=head1 DESCRIPTION
This library implements the Alleged RC4 cipher, which is described for
example in I<Applied Cryptography>. It is believed to be compatible
with RC4[TM], a proprietary cipher of RSA Security Inc.
RC4 is a stream cipher with variable key length. Typically, 128 bit
(16 byte) keys are used for strong encryption, but shorter insecure
key sizes have been widely used due to export restrictions.
RC4 consists of a key setup phase and the actual encryption or
decryption phase.
RC4_set_key() sets up the B<RC4_KEY> B<key> using the B<len> bytes long
key at B<data>.
RC4() encrypts or decrypts the B<len> bytes of data at B<indata> using
B<key> and places the result at B<outdata>. Repeated RC4() calls with
the same B<key> yield a continuous key stream.
Since RC4 is a stream cipher (the input is XORed with a pseudo-random
key stream to produce the output), decryption uses the same function
calls as encryption.
=head1 RETURN VALUES
RC4_set_key() and RC4() do not return values.
=head1 NOTE
Certain conditions have to be observed to securely use stream ciphers.
It is not permissible to perform multiple encryptions using the same
key stream.
=head1 SEE ALSO
L<blowfish(3)|blowfish(3)>, L<des(3)|des(3)>, L<rc2(3)|rc2(3)>
=head1 HISTORY
RC4_set_key() and RC4() are available in all versions of SSLeay and OpenSSL.
=cut
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录