]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/crypto/caam/key_gen.h
Merge tag 'nfsd-4.3' of git://linux-nfs.org/~bfields/linux
[mirror_ubuntu-bionic-kernel.git] / drivers / crypto / caam / key_gen.h
1 /*
2 * CAAM/SEC 4.x definitions for handling key-generation jobs
3 *
4 * Copyright 2008-2011 Freescale Semiconductor, Inc.
5 *
6 */
7
8 struct split_key_result {
9 struct completion completion;
10 int err;
11 };
12
13 void split_key_done(struct device *dev, u32 *desc, u32 err, void *context);
14
15 int gen_split_key(struct device *jrdev, u8 *key_out, int split_key_len,
16 int split_key_pad_len, const u8 *key_in, u32 keylen,
17 u32 alg_op);