Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b27cbec8
Commit
b27cbec8
authored
Aug 27, 2019
by
Inada Naoki
Committed by
Miss Islington (bot)
Aug 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-37055: fix warnings in _blake2 module (GH-14646)
https://bugs.python.org/issue37055
Automerge-Triggered-By: @tiran
parent
77df9a15
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
19 deletions
+0
-19
Modules/_blake2/impl/blake2.h
Modules/_blake2/impl/blake2.h
+0
-5
Modules/_blake2/impl/blake2b.c
Modules/_blake2/impl/blake2b.c
+0
-7
Modules/_blake2/impl/blake2s.c
Modules/_blake2/impl/blake2s.c
+0
-7
No files found.
Modules/_blake2/impl/blake2.h
View file @
b27cbec8
...
...
@@ -169,11 +169,6 @@ extern "C" {
BLAKE2_API
int
blake2sp
(
uint8_t
*
out
,
const
void
*
in
,
const
void
*
key
,
size_t
outlen
,
size_t
inlen
,
size_t
keylen
);
BLAKE2_API
int
blake2bp
(
uint8_t
*
out
,
const
void
*
in
,
const
void
*
key
,
size_t
outlen
,
size_t
inlen
,
size_t
keylen
);
static
inline
int
blake2
(
uint8_t
*
out
,
const
void
*
in
,
const
void
*
key
,
size_t
outlen
,
size_t
inlen
,
size_t
keylen
)
{
return
blake2b
(
out
,
in
,
key
,
outlen
,
inlen
,
keylen
);
}
#if defined(__cplusplus)
}
#endif
...
...
Modules/_blake2/impl/blake2b.c
View file @
b27cbec8
...
...
@@ -189,13 +189,6 @@ static inline int blake2b_init0( blake2b_state *S )
#define blake2b_init BLAKE2_IMPL_NAME(blake2b_init)
#define blake2b_init_param BLAKE2_IMPL_NAME(blake2b_init_param)
#define blake2b_init_key BLAKE2_IMPL_NAME(blake2b_init_key)
#define blake2b_update BLAKE2_IMPL_NAME(blake2b_update)
#define blake2b_final BLAKE2_IMPL_NAME(blake2b_final)
#define blake2b BLAKE2_IMPL_NAME(blake2b)
#if defined(__cplusplus)
extern
"C"
{
#endif
...
...
Modules/_blake2/impl/blake2s.c
View file @
b27cbec8
...
...
@@ -175,13 +175,6 @@ static inline int blake2s_init0( blake2s_state *S )
return
0
;
}
#define blake2s_init BLAKE2_IMPL_NAME(blake2s_init)
#define blake2s_init_param BLAKE2_IMPL_NAME(blake2s_init_param)
#define blake2s_init_key BLAKE2_IMPL_NAME(blake2s_init_key)
#define blake2s_update BLAKE2_IMPL_NAME(blake2s_update)
#define blake2s_final BLAKE2_IMPL_NAME(blake2s_final)
#define blake2s BLAKE2_IMPL_NAME(blake2s)
#if defined(__cplusplus)
extern
"C"
{
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment