2005-04-17 02:20:36 +04:00
/*
* Cryptographic API .
*
* SHA1 Secure Hash Algorithm .
*
* Derived from cryptoapi implementation , adapted for in - place
* scatterlist interface .
*
* Copyright ( c ) Alan Smithee .
* Copyright ( c ) Andrew McDonald < andrew @ mcdonald . org . uk >
* Copyright ( c ) Jean - Francois Dive < jef @ linuxbe . org >
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation ; either version 2 of the License , or ( at your option )
* any later version .
*
*/
2008-12-02 16:08:20 +03:00
# include <crypto/internal/hash.h>
2005-04-17 02:20:36 +04:00
# include <linux/init.h>
# include <linux/module.h>
# include <linux/mm.h>
# include <linux/cryptohash.h>
2005-10-30 13:25:15 +03:00
# include <linux/types.h>
2007-10-09 18:43:13 +04:00
# include <crypto/sha.h>
2005-04-17 02:20:36 +04:00
# include <asm/byteorder.h>
2008-12-02 16:08:20 +03:00
static int sha1_init ( struct shash_desc * desc )
2005-04-17 02:20:36 +04:00
{
2009-07-09 17:27:13 +04:00
struct sha1_state * sctx = shash_desc_ctx ( desc ) ;
2008-12-02 16:08:20 +03:00
2009-07-09 17:27:13 +04:00
* sctx = ( struct sha1_state ) {
. state = { SHA1_H0 , SHA1_H1 , SHA1_H2 , SHA1_H3 , SHA1_H4 } ,
2005-04-17 02:20:36 +04:00
} ;
2008-12-02 16:08:20 +03:00
return 0 ;
2005-04-17 02:20:36 +04:00
}
2008-12-02 16:08:20 +03:00
static int sha1_update ( struct shash_desc * desc , const u8 * data ,
2006-05-16 16:09:29 +04:00
unsigned int len )
2005-04-17 02:20:36 +04:00
{
2009-07-09 17:27:13 +04:00
struct sha1_state * sctx = shash_desc_ctx ( desc ) ;
2005-11-13 02:59:54 +03:00
unsigned int partial , done ;
2005-11-13 02:47:20 +03:00
const u8 * src ;
2005-04-17 02:20:36 +04:00
2005-11-13 03:17:33 +03:00
partial = sctx - > count & 0x3f ;
sctx - > count + = len ;
2005-11-13 02:59:54 +03:00
done = 0 ;
2005-11-13 02:47:20 +03:00
src = data ;
2005-04-17 02:20:36 +04:00
2005-11-13 02:59:54 +03:00
if ( ( partial + len ) > 63 ) {
2005-11-13 02:47:20 +03:00
u32 temp [ SHA_WORKSPACE_WORDS ] ;
2005-11-13 02:59:54 +03:00
if ( partial ) {
2005-12-21 14:01:58 +03:00
done = - partial ;
memcpy ( sctx - > buffer + partial , data , done + 64 ) ;
2005-11-13 02:47:20 +03:00
src = sctx - > buffer ;
2005-04-17 02:20:36 +04:00
}
2005-11-13 02:47:20 +03:00
do {
sha_transform ( sctx - > state , src , temp ) ;
2005-11-13 02:59:54 +03:00
done + = 64 ;
src = data + done ;
} while ( done + 63 < len ) ;
2005-11-13 02:47:20 +03:00
memset ( temp , 0 , sizeof ( temp ) ) ;
2005-11-13 02:59:54 +03:00
partial = 0 ;
2005-04-17 02:20:36 +04:00
}
2005-11-13 02:59:54 +03:00
memcpy ( sctx - > buffer + partial , src , len - done ) ;
2008-12-02 16:08:20 +03:00
return 0 ;
2005-04-17 02:20:36 +04:00
}
/* Add padding and return the message digest. */
2008-12-02 16:08:20 +03:00
static int sha1_final ( struct shash_desc * desc , u8 * out )
2005-04-17 02:20:36 +04:00
{
2009-07-09 17:27:13 +04:00
struct sha1_state * sctx = shash_desc_ctx ( desc ) ;
2005-10-30 13:25:15 +03:00
__be32 * dst = ( __be32 * ) out ;
u32 i , index , padlen ;
__be64 bits ;
2005-04-17 02:20:36 +04:00
static const u8 padding [ 64 ] = { 0x80 , } ;
2005-11-13 03:17:33 +03:00
bits = cpu_to_be64 ( sctx - > count < < 3 ) ;
2005-04-17 02:20:36 +04:00
/* Pad out to 56 mod 64 */
2005-11-13 03:17:33 +03:00
index = sctx - > count & 0x3f ;
2005-04-17 02:20:36 +04:00
padlen = ( index < 56 ) ? ( 56 - index ) : ( ( 64 + 56 ) - index ) ;
2008-12-02 16:08:20 +03:00
sha1_update ( desc , padding , padlen ) ;
2005-04-17 02:20:36 +04:00
/* Append length */
2008-12-02 16:08:20 +03:00
sha1_update ( desc , ( const u8 * ) & bits , sizeof ( bits ) ) ;
2005-04-17 02:20:36 +04:00
/* Store state in digest */
2005-10-30 13:25:15 +03:00
for ( i = 0 ; i < 5 ; i + + )
dst [ i ] = cpu_to_be32 ( sctx - > state [ i ] ) ;
2005-04-17 02:20:36 +04:00
/* Wipe context */
memset ( sctx , 0 , sizeof * sctx ) ;
2008-12-02 16:08:20 +03:00
return 0 ;
2005-04-17 02:20:36 +04:00
}
2009-07-09 17:27:13 +04:00
static int sha1_export ( struct shash_desc * desc , void * out )
{
struct sha1_state * sctx = shash_desc_ctx ( desc ) ;
memcpy ( out , sctx , sizeof ( * sctx ) ) ;
return 0 ;
}
static int sha1_import ( struct shash_desc * desc , const void * in )
{
struct sha1_state * sctx = shash_desc_ctx ( desc ) ;
memcpy ( sctx , in , sizeof ( * sctx ) ) ;
return 0 ;
}
2008-12-02 16:08:20 +03:00
static struct shash_alg alg = {
. digestsize = SHA1_DIGEST_SIZE ,
. init = sha1_init ,
. update = sha1_update ,
. final = sha1_final ,
2009-07-09 17:27:13 +04:00
. export = sha1_export ,
. import = sha1_import ,
. descsize = sizeof ( struct sha1_state ) ,
. statesize = sizeof ( struct sha1_state ) ,
2008-12-02 16:08:20 +03:00
. base = {
. cra_name = " sha1 " ,
. cra_driver_name = " sha1-generic " ,
. cra_flags = CRYPTO_ALG_TYPE_SHASH ,
. cra_blocksize = SHA1_BLOCK_SIZE ,
. cra_module = THIS_MODULE ,
}
2005-04-17 02:20:36 +04:00
} ;
2008-04-05 17:00:57 +04:00
static int __init sha1_generic_mod_init ( void )
2005-04-17 02:20:36 +04:00
{
2008-12-02 16:08:20 +03:00
return crypto_register_shash ( & alg ) ;
2005-04-17 02:20:36 +04:00
}
2008-04-05 17:00:57 +04:00
static void __exit sha1_generic_mod_fini ( void )
2005-04-17 02:20:36 +04:00
{
2008-12-02 16:08:20 +03:00
crypto_unregister_shash ( & alg ) ;
2005-04-17 02:20:36 +04:00
}
2008-04-05 17:00:57 +04:00
module_init ( sha1_generic_mod_init ) ;
module_exit ( sha1_generic_mod_fini ) ;
2005-04-17 02:20:36 +04:00
MODULE_LICENSE ( " GPL " ) ;
MODULE_DESCRIPTION ( " SHA1 Secure Hash Algorithm " ) ;
2006-07-09 02:59:38 +04:00
2007-10-08 07:45:10 +04:00
MODULE_ALIAS ( " sha1 " ) ;