Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
752d706a
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看板
提交
752d706a
编写于
1月 08, 2000
作者:
B
Ben Laurie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Make NO_RSA compile with pedantic.
上级
c3ed3b6e
变更
16
隐藏空白更改
内联
并排
Showing
16 changed file
with
90 addition
and
1 deletion
+90
-1
apps/genrsa.c
apps/genrsa.c
+6
-0
apps/req.c
apps/req.c
+4
-0
apps/rsa.c
apps/rsa.c
+6
-0
crypto/asn1/d2i_r_pr.c
crypto/asn1/d2i_r_pr.c
+6
-0
crypto/asn1/d2i_r_pu.c
crypto/asn1/d2i_r_pu.c
+6
-0
crypto/asn1/i2d_r_pr.c
crypto/asn1/i2d_r_pr.c
+6
-0
crypto/asn1/i2d_r_pu.c
crypto/asn1/i2d_r_pu.c
+6
-0
crypto/asn1/n_pkey.c
crypto/asn1/n_pkey.c
+7
-0
crypto/evp/p_open.c
crypto/evp/p_open.c
+6
-0
crypto/pem/pem_seal.c
crypto/pem/pem_seal.c
+6
-0
rsaref/rsaref.c
rsaref/rsaref.c
+6
-0
ssl/s2_clnt.c
ssl/s2_clnt.c
+6
-0
ssl/s2_lib.c
ssl/s2_lib.c
+6
-0
ssl/s2_meth.c
ssl/s2_meth.c
+6
-0
ssl/s2_srvr.c
ssl/s2_srvr.c
+6
-0
ssl/s3_srvr.c
ssl/s3_srvr.c
+1
-1
未找到文件。
apps/genrsa.c
浏览文件 @
752d706a
...
...
@@ -216,4 +216,10 @@ static void MS_CALLBACK genrsa_cb(int p, int n, void *arg)
p
=
n
;
#endif
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
apps/req.c
浏览文件 @
752d706a
...
...
@@ -120,7 +120,9 @@ static int add_attribute_object(STACK_OF(X509_ATTRIBUTE) *n, char *text,
int
max
);
static
int
add_DN_object
(
X509_NAME
*
n
,
char
*
text
,
char
*
def
,
char
*
value
,
int
nid
,
int
min
,
int
max
);
#ifndef NO_RSA
static
void
MS_CALLBACK
req_cb
(
int
p
,
int
n
,
void
*
arg
);
#endif
static
int
req_fix_data
(
int
nid
,
int
*
type
,
int
len
,
int
min
,
int
max
);
static
int
check_end
(
char
*
str
,
char
*
end
);
static
int
add_oid_section
(
LHASH
*
conf
);
...
...
@@ -1403,6 +1405,7 @@ err:
return
(
0
);
}
#ifndef NO_RSA
static
void
MS_CALLBACK
req_cb
(
int
p
,
int
n
,
void
*
arg
)
{
char
c
=
'*'
;
...
...
@@ -1417,6 +1420,7 @@ static void MS_CALLBACK req_cb(int p, int n, void *arg)
p
=
n
;
#endif
}
#endif
static
int
req_fix_data
(
int
nid
,
int
*
type
,
int
len
,
int
min
,
int
max
)
{
...
...
apps/rsa.c
浏览文件 @
752d706a
...
...
@@ -395,4 +395,10 @@ end:
if
(
rsa
!=
NULL
)
RSA_free
(
rsa
);
EXIT
(
ret
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
crypto/asn1/d2i_r_pr.c
浏览文件 @
752d706a
...
...
@@ -119,4 +119,10 @@ err:
return
(
NULL
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
crypto/asn1/d2i_r_pu.c
浏览文件 @
752d706a
...
...
@@ -94,4 +94,10 @@ err:
if
(
bs
!=
NULL
)
M_ASN1_INTEGER_free
(
bs
);
return
(
NULL
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
crypto/asn1/i2d_r_pr.c
浏览文件 @
752d706a
...
...
@@ -123,5 +123,11 @@ int i2d_RSAPrivateKey(RSA *a, unsigned char **pp)
*
pp
=
p
;
return
(
t
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
crypto/asn1/i2d_r_pu.c
浏览文件 @
752d706a
...
...
@@ -109,4 +109,10 @@ int i2d_RSAPublicKey(RSA *a, unsigned char **pp)
*
pp
=
p
;
return
(
t
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
crypto/asn1/n_pkey.c
浏览文件 @
752d706a
...
...
@@ -338,4 +338,11 @@ static void NETSCAPE_PKEY_free(NETSCAPE_PKEY *a)
}
#endif
/* NO_RC4 */
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
crypto/evp/p_open.c
浏览文件 @
752d706a
...
...
@@ -110,4 +110,10 @@ int EVP_OpenFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
EVP_DecryptInit
(
ctx
,
NULL
,
NULL
,
NULL
);
return
(
i
);
}
#else
/* !NO_RSA */
# ifdef PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
crypto/pem/pem_seal.c
浏览文件 @
752d706a
...
...
@@ -175,4 +175,10 @@ err:
if
(
s
!=
NULL
)
Free
(
s
);
return
(
ret
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
rsaref/rsaref.c
浏览文件 @
752d706a
...
...
@@ -298,4 +298,10 @@ err:
memset
(
&
rnd
,
0
,
sizeof
(
rnd
));
return
(
outlen
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
ssl/s2_clnt.c
浏览文件 @
752d706a
...
...
@@ -974,4 +974,10 @@ end:
EVP_PKEY_free
(
pkey
);
return
(
i
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
ssl/s2_lib.c
浏览文件 @
752d706a
...
...
@@ -421,4 +421,10 @@ int ssl2_shutdown(SSL *s)
s
->
shutdown
=
(
SSL_SENT_SHUTDOWN
|
SSL_RECEIVED_SHUTDOWN
);
return
(
1
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
ssl/s2_meth.c
浏览文件 @
752d706a
...
...
@@ -86,4 +86,10 @@ SSL_METHOD *SSLv2_method(void)
}
return
(
&
SSLv2_data
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
ssl/s2_srvr.c
浏览文件 @
752d706a
...
...
@@ -966,4 +966,10 @@ static int ssl_rsa_private_decrypt(CERT *c, int len, unsigned char *from,
SSLerr
(
SSL_F_SSL_RSA_PRIVATE_DECRYPT
,
ERR_R_RSA_LIB
);
return
(
i
);
}
#else
/* !NO_RSA */
# if PEDANTIC
static
void
*
dummy
=&
dummy
;
# endif
#endif
ssl/s3_srvr.c
浏览文件 @
752d706a
...
...
@@ -900,6 +900,7 @@ static int ssl3_send_server_key_exchange(SSL *s)
int
j
,
num
;
RSA
*
rsa
;
unsigned
char
md_buf
[
MD5_DIGEST_LENGTH
+
SHA_DIGEST_LENGTH
];
unsigned
int
u
;
#endif
#ifndef NO_DH
DH
*
dh
,
*
dhp
;
...
...
@@ -907,7 +908,6 @@ static int ssl3_send_server_key_exchange(SSL *s)
EVP_PKEY
*
pkey
;
unsigned
char
*
p
,
*
d
;
int
al
,
i
;
unsigned
int
u
;
unsigned
long
type
;
int
n
;
CERT
*
cert
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录