2019-05-29 23:57:49 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2010-01-07 04:57:19 +00:00
|
|
|
/*
|
|
|
|
* pcrypt - Parallel crypto engine.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 secunet Security Networks AG
|
|
|
|
* Copyright (C) 2009 Steffen Klassert <steffen.klassert@secunet.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CRYPTO_PCRYPT_H
|
|
|
|
#define _CRYPTO_PCRYPT_H
|
|
|
|
|
2021-12-10 14:30:09 +00:00
|
|
|
#include <linux/container_of.h>
|
2010-01-07 04:57:19 +00:00
|
|
|
#include <linux/crypto.h>
|
|
|
|
#include <linux/padata.h>
|
|
|
|
|
|
|
|
struct pcrypt_request {
|
|
|
|
struct padata_priv padata;
|
|
|
|
void *data;
|
|
|
|
void *__ctx[] CRYPTO_MINALIGN_ATTR;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline void *pcrypt_request_ctx(struct pcrypt_request *req)
|
|
|
|
{
|
|
|
|
return req->__ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
struct padata_priv *pcrypt_request_padata(struct pcrypt_request *req)
|
|
|
|
{
|
|
|
|
return &req->padata;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
|
|
|
struct pcrypt_request *pcrypt_padata_request(struct padata_priv *padata)
|
|
|
|
{
|
|
|
|
return container_of(padata, struct pcrypt_request, padata);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|