6 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
14 #include <linux/crypto.h>
16 #include <linux/errno.h>
17 #include <linux/highmem.h>
18 #include <asm/scatterlist.h>
21 static void init(struct crypto_tfm
*tfm
)
23 tfm
->__crt_alg
->cra_digest
.dia_init(crypto_tfm_ctx(tfm
));
26 static void update(struct crypto_tfm
*tfm
,
27 struct scatterlist
*sg
, unsigned int nsg
)
31 for (i
= 0; i
< nsg
; i
++) {
32 char *p
= crypto_kmap(sg
[i
].page
, 0) + sg
[i
].offset
;
33 tfm
->__crt_alg
->cra_digest
.dia_update(crypto_tfm_ctx(tfm
),
40 static void final(struct crypto_tfm
*tfm
, u8
*out
)
42 tfm
->__crt_alg
->cra_digest
.dia_final(crypto_tfm_ctx(tfm
), out
);
45 static void digest(struct crypto_tfm
*tfm
,
46 struct scatterlist
*sg
, unsigned int nsg
, u8
*out
)
50 tfm
->crt_digest
.dit_init(tfm
);
52 for (i
= 0; i
< nsg
; i
++) {
53 char *p
= crypto_kmap(sg
[i
].page
, 0) + sg
[i
].offset
;
54 tfm
->__crt_alg
->cra_digest
.dia_update(crypto_tfm_ctx(tfm
),
59 crypto_digest_final(tfm
, out
);
62 int crypto_init_digest_flags(struct crypto_tfm
*tfm
, u32 flags
)
64 return flags
? -EINVAL
: 0;
67 int crypto_init_digest_ops(struct crypto_tfm
*tfm
)
69 struct digest_tfm
*ops
= &tfm
->crt_digest
;
72 ops
->dit_update
= update
;
73 ops
->dit_final
= final
;
74 ops
->dit_digest
= digest
;
76 return crypto_alloc_hmac_block(tfm
);
79 void crypto_exit_digest_ops(struct crypto_tfm
*tfm
)
81 crypto_free_hmac_block(tfm
);