Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
e5828cd4
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
大约 1 年 前同步成功
通知
9
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看板
提交
e5828cd4
编写于
11月 06, 2000
作者:
R
Richard Levitte
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Constify the RSAref glue code.
上级
7081f3bd
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
28 addition
and
22 deletion
+28
-22
rsaref/rsaref.c
rsaref/rsaref.c
+18
-17
rsaref/rsaref.h
rsaref/rsaref.h
+10
-5
未找到文件。
rsaref/rsaref.c
浏览文件 @
e5828cd4
...
...
@@ -66,21 +66,22 @@
static
int
RSAref_bn2bin
(
BIGNUM
*
from
,
unsigned
char
*
to
,
int
max
);
#ifdef undef
static
BIGNUM
*
RSAref_bin2bn
(
unsigned
char
*
from
,
BIGNUM
*
to
,
int
max
);
static
BIGNUM
*
RSAref_bin2bn
(
const
unsigned
char
*
from
,
BIGNUM
*
to
,
int
max
);
#endif
static
int
RSAref_Public_eay2ref
(
RSA
*
from
,
RSArefPublicKey
*
to
);
static
int
RSAref_Private_eay2ref
(
RSA
*
from
,
RSArefPrivateKey
*
to
);
int
RSA_ref_private_decrypt
(
int
len
,
unsigned
char
*
from
,
int
RSA_ref_private_decrypt
(
int
len
,
const
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
);
int
RSA_ref_private_encrypt
(
int
len
,
unsigned
char
*
from
,
int
RSA_ref_private_encrypt
(
int
len
,
const
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
);
int
RSA_ref_public_encrypt
(
int
len
,
unsigned
char
*
from
,
int
RSA_ref_public_encrypt
(
int
len
,
const
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
);
int
RSA_ref_public_decrypt
(
int
len
,
unsigned
char
*
from
,
int
RSA_ref_public_decrypt
(
int
len
,
const
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
);
static
int
BN_ref_mod_exp
(
BIGNUM
*
r
,
BIGNUM
*
a
,
const
BIGNUM
*
p
,
const
BIGNUM
*
m
,
static
int
BN_ref_mod_exp
(
BIGNUM
*
r
,
const
BIGNUM
*
a
,
const
BIGNUM
*
p
,
const
BIGNUM
*
m
,
BN_CTX
*
ctx
,
BN_MONT_CTX
*
m_ctx
);
static
int
RSA_ref_mod_exp
(
BIGNUM
*
r0
,
BIGNUM
*
I
,
RSA
*
rsa
);
static
int
RSA_ref_mod_exp
(
BIGNUM
*
r0
,
const
BIGNUM
*
I
,
RSA
*
rsa
);
static
RSA_METHOD
rsa_pkcs1_ref_meth
=
{
"RSAref PKCS#1 RSA"
,
RSA_ref_public_encrypt
,
...
...
@@ -100,13 +101,13 @@ RSA_METHOD *RSA_PKCS1_RSAref(void)
return
(
&
rsa_pkcs1_ref_meth
);
}
static
int
RSA_ref_mod_exp
(
BIGNUM
*
r0
,
BIGNUM
*
I
,
RSA
*
rsa
)
static
int
RSA_ref_mod_exp
(
BIGNUM
*
r0
,
const
BIGNUM
*
I
,
RSA
*
rsa
)
{
RSAREFerr
(
RSAREF_F_RSA_REF_MOD_EXP
,
ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED
);
return
(
0
);
}
static
int
BN_ref_mod_exp
(
BIGNUM
*
r
,
BIGNUM
*
a
,
const
BIGNUM
*
p
,
static
int
BN_ref_mod_exp
(
BIGNUM
*
r
,
const
BIGNUM
*
a
,
const
BIGNUM
*
p
,
const
BIGNUM
*
m
,
BN_CTX
*
ctx
,
BN_MONT_CTX
*
m_ctx
)
{
RSAREFerr
(
RSAREF_F_BN_REF_MOD_EXP
,
ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED
);
...
...
@@ -201,8 +202,8 @@ static int RSAref_Private_eay2ref(RSA *from, RSArefPrivateKey *to)
return
(
1
);
}
int
RSA_ref_private_decrypt
(
int
len
,
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
)
int
RSA_ref_private_decrypt
(
int
len
,
const
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
)
{
int
i
,
outlen
=
-
1
;
RSArefPrivateKey
RSAkey
;
...
...
@@ -219,8 +220,8 @@ err:
return
(
outlen
);
}
int
RSA_ref_private_encrypt
(
int
len
,
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
)
int
RSA_ref_private_encrypt
(
int
len
,
const
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
)
{
int
i
,
outlen
=
-
1
;
RSArefPrivateKey
RSAkey
;
...
...
@@ -242,8 +243,8 @@ err:
return
(
outlen
);
}
int
RSA_ref_public_decrypt
(
int
len
,
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
)
int
RSA_ref_public_decrypt
(
int
len
,
const
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
)
{
int
i
,
outlen
=
-
1
;
RSArefPublicKey
RSAkey
;
...
...
@@ -260,8 +261,8 @@ err:
return
(
outlen
);
}
int
RSA_ref_public_encrypt
(
int
len
,
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
)
int
RSA_ref_public_encrypt
(
int
len
,
const
unsigned
char
*
from
,
unsigned
char
*
to
,
RSA
*
rsa
,
int
padding
)
{
int
outlen
=
-
1
;
int
i
;
...
...
rsaref/rsaref.h
浏览文件 @
e5828cd4
...
...
@@ -118,17 +118,22 @@ typedef struct RSARandomState_st
#define RE_SIGNATURE_ENCODING 0x040c
#define RE_ENCRYPTION_ALGORITHM 0x040d
int
RSAPrivateDecrypt
(
unsigned
char
*
to
,
int
*
outlen
,
unsigned
char
*
from
,
int
RSAPrivateDecrypt
(
unsigned
char
*
to
,
int
*
outlen
,
const
unsigned
char
*
from
,
int
len
,
RSArefPrivateKey
*
RSAkey
);
int
RSAPrivateEncrypt
(
unsigned
char
*
to
,
int
*
outlen
,
unsigned
char
*
from
,
int
RSAPrivateEncrypt
(
unsigned
char
*
to
,
int
*
outlen
,
const
unsigned
char
*
from
,
int
len
,
RSArefPrivateKey
*
RSAkey
);
int
RSAPublicDecrypt
(
unsigned
char
*
to
,
int
*
outlen
,
unsigned
char
*
from
,
int
RSAPublicDecrypt
(
unsigned
char
*
to
,
int
*
outlen
,
const
unsigned
char
*
from
,
int
len
,
RSArefPublicKey
*
RSAkey
);
int
RSAPublicEncrypt
(
unsigned
char
*
to
,
int
*
outlen
,
unsigned
char
*
from
,
int
RSAPublicEncrypt
(
unsigned
char
*
to
,
int
*
outlen
,
const
unsigned
char
*
from
,
int
len
,
RSArefPublicKey
*
RSAkey
,
RSARandomState
*
rnd
);
int
R_RandomInit
(
RSARandomState
*
rnd
);
int
R_GetRandomBytesNeeded
(
unsigned
int
*
,
RSARandomState
*
rnd
);
int
R_RandomUpdate
(
RSARandomState
*
rnd
,
unsigned
char
*
data
,
unsigned
int
n
);
int
R_RandomUpdate
(
RSARandomState
*
rnd
,
const
unsigned
char
*
data
,
unsigned
int
n
);
int
R_RandomFinal
(
RSARandomState
*
rnd
);
void
ERR_load_RSAREF_strings
(
void
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录