Skip to content

Commit

Permalink
[CRYPTO] sha: Add module aliases for sha1 / sha256
Browse files Browse the repository at this point in the history
Crypto modules should be loadable by their .cra_driver_name, so
we should make MODULE_ALIAS()es with these names. This patch adds
aliases for SHA1 and SHA256 only as that's what we need for
PadLock-SHA driver.

Signed-off-by: Michal Ludvig <michal@logix.cz>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
Michal Ludvig authored and Herbert Xu committed Sep 21, 2006
1 parent 6bfd480 commit b3be9a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crypto/sha1.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ static void sha1_final(struct crypto_tfm *tfm, u8 *out)

static struct crypto_alg alg = {
.cra_name = "sha1",
.cra_driver_name= "sha1-generic",
.cra_flags = CRYPTO_ALG_TYPE_DIGEST,
.cra_blocksize = SHA1_HMAC_BLOCK_SIZE,
.cra_ctxsize = sizeof(struct sha1_ctx),
Expand Down Expand Up @@ -137,3 +138,5 @@ module_exit(fini);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SHA1 Secure Hash Algorithm");

MODULE_ALIAS("sha1-generic");
3 changes: 3 additions & 0 deletions crypto/sha256.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ static void sha256_final(struct crypto_tfm *tfm, u8 *out)

static struct crypto_alg alg = {
.cra_name = "sha256",
.cra_driver_name= "sha256-generic",
.cra_flags = CRYPTO_ALG_TYPE_DIGEST,
.cra_blocksize = SHA256_HMAC_BLOCK_SIZE,
.cra_ctxsize = sizeof(struct sha256_ctx),
Expand Down Expand Up @@ -337,3 +338,5 @@ module_exit(fini);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("SHA256 Secure Hash Algorithm");

MODULE_ALIAS("sha256-generic");

0 comments on commit b3be9a6

Please sign in to comment.