Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
4f6fadbd
Commit
4f6fadbd
authored
7 years ago
by
Vincent Dupont
Browse files
Options
Downloads
Patches
Plain Diff
crypto/cbc: constify input buffers
parent
8d819aed
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sys/crypto/modes/cbc.c
+4
-3
4 additions, 3 deletions
sys/crypto/modes/cbc.c
sys/include/crypto/modes/cbc.h
+2
-2
2 additions, 2 deletions
sys/include/crypto/modes/cbc.h
with
6 additions
and
5 deletions
sys/crypto/modes/cbc.c
+
4
−
3
View file @
4f6fadbd
...
...
@@ -23,7 +23,7 @@
#include
"crypto/modes/cbc.h"
int
cipher_encrypt_cbc
(
cipher_t
*
cipher
,
uint8_t
iv
[
16
],
uint8_t
*
input
,
size_t
length
,
uint8_t
*
output
)
const
uint8_t
*
input
,
size_t
length
,
uint8_t
*
output
)
{
size_t
offset
=
0
;
uint8_t
block_size
,
input_block
[
CIPHER_MAX_BLOCK_SIZE
]
=
{
0
},
...
...
@@ -55,10 +55,11 @@ int cipher_encrypt_cbc(cipher_t* cipher, uint8_t iv[16],
int
cipher_decrypt_cbc
(
cipher_t
*
cipher
,
uint8_t
iv
[
16
],
uint8_t
*
input
,
size_t
length
,
uint8_t
*
output
)
const
uint8_t
*
input
,
size_t
length
,
uint8_t
*
output
)
{
size_t
offset
=
0
;
uint8_t
*
input_block
,
*
input_block_last
,
block_size
;
const
uint8_t
*
input_block
,
*
input_block_last
;
uint8_t
block_size
;
block_size
=
cipher_get_block_size
(
cipher
);
...
...
This diff is collapsed.
Click to expand it.
sys/include/crypto/modes/cbc.h
+
2
−
2
View file @
4f6fadbd
...
...
@@ -37,7 +37,7 @@ extern "C" {
* @param output pointer to allocated memory for encrypted data. It has to
* be of size data_len + BLOCK_SIZE - data_len % BLOCK_SIZE.
*/
int
cipher_encrypt_cbc
(
cipher_t
*
cipher
,
uint8_t
iv
[
16
],
uint8_t
*
input
,
int
cipher_encrypt_cbc
(
cipher_t
*
cipher
,
uint8_t
iv
[
16
],
const
uint8_t
*
input
,
size_t
input_len
,
uint8_t
*
output
);
...
...
@@ -51,7 +51,7 @@ int cipher_encrypt_cbc(cipher_t* cipher, uint8_t iv[16], uint8_t* input,
* @param output pointer to allocated memory for plaintext data. It has to
* be of size input_len.
*/
int
cipher_decrypt_cbc
(
cipher_t
*
cipher
,
uint8_t
iv
[
16
],
uint8_t
*
input
,
int
cipher_decrypt_cbc
(
cipher_t
*
cipher
,
uint8_t
iv
[
16
],
const
uint8_t
*
input
,
size_t
input_len
,
uint8_t
*
output
);
#ifdef __cplusplus
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment