Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
95a62311
Commit
95a62311
authored
Jul 09, 2020
by
Herbert Xu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ux500'
The change on the ux500 branch is needed by the regulator API.
parents
57c8aa43
3cfa435c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
drivers/crypto/ux500/hash/hash_core.c
drivers/crypto/ux500/hash/hash_core.c
+9
-9
No files found.
drivers/crypto/ux500/hash/hash_core.c
View file @
95a62311
...
...
@@ -545,7 +545,7 @@ static bool hash_dma_valid_data(struct scatterlist *sg, int datasize)
*
* Initialize structures.
*/
static
int
hash_init
(
struct
ahash_request
*
req
)
static
int
ux500_
hash_init
(
struct
ahash_request
*
req
)
{
struct
crypto_ahash
*
tfm
=
crypto_ahash_reqtfm
(
req
);
struct
hash_ctx
*
ctx
=
crypto_ahash_ctx
(
tfm
);
...
...
@@ -1359,7 +1359,7 @@ static int ahash_sha1_init(struct ahash_request *req)
ctx
->
config
.
oper_mode
=
HASH_OPER_MODE_HASH
;
ctx
->
digestsize
=
SHA1_DIGEST_SIZE
;
return
hash_init
(
req
);
return
ux500_
hash_init
(
req
);
}
static
int
ahash_sha256_init
(
struct
ahash_request
*
req
)
...
...
@@ -1372,7 +1372,7 @@ static int ahash_sha256_init(struct ahash_request *req)
ctx
->
config
.
oper_mode
=
HASH_OPER_MODE_HASH
;
ctx
->
digestsize
=
SHA256_DIGEST_SIZE
;
return
hash_init
(
req
);
return
ux500_
hash_init
(
req
);
}
static
int
ahash_sha1_digest
(
struct
ahash_request
*
req
)
...
...
@@ -1425,7 +1425,7 @@ static int hmac_sha1_init(struct ahash_request *req)
ctx
->
config
.
oper_mode
=
HASH_OPER_MODE_HMAC
;
ctx
->
digestsize
=
SHA1_DIGEST_SIZE
;
return
hash_init
(
req
);
return
ux500_
hash_init
(
req
);
}
static
int
hmac_sha256_init
(
struct
ahash_request
*
req
)
...
...
@@ -1438,7 +1438,7 @@ static int hmac_sha256_init(struct ahash_request *req)
ctx
->
config
.
oper_mode
=
HASH_OPER_MODE_HMAC
;
ctx
->
digestsize
=
SHA256_DIGEST_SIZE
;
return
hash_init
(
req
);
return
ux500_
hash_init
(
req
);
}
static
int
hmac_sha1_digest
(
struct
ahash_request
*
req
)
...
...
@@ -1515,7 +1515,7 @@ static struct hash_algo_template hash_algs[] = {
.
conf
.
algorithm
=
HASH_ALGO_SHA1
,
.
conf
.
oper_mode
=
HASH_OPER_MODE_HASH
,
.
hash
=
{
.
init
=
hash_init
,
.
init
=
ux500_
hash_init
,
.
update
=
ahash_update
,
.
final
=
ahash_final
,
.
digest
=
ahash_sha1_digest
,
...
...
@@ -1538,7 +1538,7 @@ static struct hash_algo_template hash_algs[] = {
.
conf
.
algorithm
=
HASH_ALGO_SHA256
,
.
conf
.
oper_mode
=
HASH_OPER_MODE_HASH
,
.
hash
=
{
.
init
=
hash_init
,
.
init
=
ux500_
hash_init
,
.
update
=
ahash_update
,
.
final
=
ahash_final
,
.
digest
=
ahash_sha256_digest
,
...
...
@@ -1561,7 +1561,7 @@ static struct hash_algo_template hash_algs[] = {
.
conf
.
algorithm
=
HASH_ALGO_SHA1
,
.
conf
.
oper_mode
=
HASH_OPER_MODE_HMAC
,
.
hash
=
{
.
init
=
hash_init
,
.
init
=
ux500_
hash_init
,
.
update
=
ahash_update
,
.
final
=
ahash_final
,
.
digest
=
hmac_sha1_digest
,
...
...
@@ -1585,7 +1585,7 @@ static struct hash_algo_template hash_algs[] = {
.
conf
.
algorithm
=
HASH_ALGO_SHA256
,
.
conf
.
oper_mode
=
HASH_OPER_MODE_HMAC
,
.
hash
=
{
.
init
=
hash_init
,
.
init
=
ux500_
hash_init
,
.
update
=
ahash_update
,
.
final
=
ahash_final
,
.
digest
=
hmac_sha256_digest
,
...
...
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