Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
b9fdb3eb
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看板
提交
b9fdb3eb
编写于
8月 06, 2001
作者:
B
Bodo Möller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Reinsert typedef'ed names for structs to help those trying to read the
sourcecode (including fgrep)
上级
d66ace9d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
7 addition
and
7 deletion
+7
-7
crypto/evp/evp.h
crypto/evp/evp.h
+2
-2
crypto/x509/x509.h
crypto/x509/x509.h
+4
-4
crypto/x509/x509_vfy.h
crypto/x509/x509_vfy.h
+1
-1
未找到文件。
crypto/evp/evp.h
浏览文件 @
b9fdb3eb
...
@@ -137,7 +137,7 @@ struct evp_pkey_st
...
@@ -137,7 +137,7 @@ struct evp_pkey_st
}
pkey
;
}
pkey
;
int
save_parameters
;
int
save_parameters
;
STACK_OF
(
X509_ATTRIBUTE
)
*
attributes
;
/* [ 0 ] */
STACK_OF
(
X509_ATTRIBUTE
)
*
attributes
;
/* [ 0 ] */
};
}
/* EVP_PKEY */
;
#define EVP_PKEY_MO_SIGN 0x0001
#define EVP_PKEY_MO_SIGN 0x0001
#define EVP_PKEY_MO_VERIFY 0x0002
#define EVP_PKEY_MO_VERIFY 0x0002
...
@@ -226,7 +226,7 @@ struct env_md_st
...
@@ -226,7 +226,7 @@ struct env_md_st
int
required_pkey_type
[
5
];
/*EVP_PKEY_xxx */
int
required_pkey_type
[
5
];
/*EVP_PKEY_xxx */
int
block_size
;
int
block_size
;
int
ctx_size
;
/* how big does the ctx->md_data need to be */
int
ctx_size
;
/* how big does the ctx->md_data need to be */
};
}
/* EVP_MD */
;
...
...
crypto/x509/x509.h
浏览文件 @
b9fdb3eb
...
@@ -126,7 +126,7 @@ struct X509_algor_st
...
@@ -126,7 +126,7 @@ struct X509_algor_st
{
{
ASN1_OBJECT
*
algorithm
;
ASN1_OBJECT
*
algorithm
;
ASN1_TYPE
*
parameter
;
ASN1_TYPE
*
parameter
;
};
}
/* X509_ALGOR */
;
DECLARE_STACK_OF
(
X509_ALGOR
)
DECLARE_STACK_OF
(
X509_ALGOR
)
DECLARE_ASN1_SET_OF
(
X509_ALGOR
)
DECLARE_ASN1_SET_OF
(
X509_ALGOR
)
...
@@ -172,7 +172,7 @@ struct X509_name_st
...
@@ -172,7 +172,7 @@ struct X509_name_st
char
*
bytes
;
char
*
bytes
;
#endif
#endif
unsigned
long
hash
;
/* Keep the hash around for lookups */
unsigned
long
hash
;
/* Keep the hash around for lookups */
};
}
/* X509_NAME */
;
DECLARE_STACK_OF
(
X509_NAME
)
DECLARE_STACK_OF
(
X509_NAME
)
...
@@ -272,7 +272,7 @@ struct x509_st
...
@@ -272,7 +272,7 @@ struct x509_st
unsigned
char
sha1_hash
[
SHA_DIGEST_LENGTH
];
unsigned
char
sha1_hash
[
SHA_DIGEST_LENGTH
];
#endif
#endif
X509_CERT_AUX
*
aux
;
X509_CERT_AUX
*
aux
;
};
}
/* X509 */
;
DECLARE_STACK_OF
(
X509
)
DECLARE_STACK_OF
(
X509
)
DECLARE_ASN1_SET_OF
(
X509
)
DECLARE_ASN1_SET_OF
(
X509
)
...
@@ -419,7 +419,7 @@ struct X509_crl_st
...
@@ -419,7 +419,7 @@ struct X509_crl_st
X509_ALGOR
*
sig_alg
;
X509_ALGOR
*
sig_alg
;
ASN1_BIT_STRING
*
signature
;
ASN1_BIT_STRING
*
signature
;
int
references
;
int
references
;
};
}
/* X509_CRL */
;
DECLARE_STACK_OF
(
X509_CRL
)
DECLARE_STACK_OF
(
X509_CRL
)
DECLARE_ASN1_SET_OF
(
X509_CRL
)
DECLARE_ASN1_SET_OF
(
X509_CRL
)
...
...
crypto/x509/x509_vfy.h
浏览文件 @
b9fdb3eb
...
@@ -188,7 +188,7 @@ struct x509_store_st
...
@@ -188,7 +188,7 @@ struct x509_store_st
CRYPTO_EX_DATA
ex_data
;
CRYPTO_EX_DATA
ex_data
;
int
references
;
int
references
;
int
depth
;
/* how deep to look (still unused -- X509_STORE_CTX's depth is used) */
int
depth
;
/* how deep to look (still unused -- X509_STORE_CTX's depth is used) */
};
}
/* X509_STORE */
;
#define X509_STORE_set_depth(ctx,d) ((ctx)->depth=(d))
#define X509_STORE_set_depth(ctx,d) ((ctx)->depth=(d))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录