/** * struct akcipher_request - public key cipher request * * @base: Common attributes for async crypto requests * @src: Source data * @dst: Destination data * @src_len: Size of the input buffer * @dst_len: Size of @dst buffer * It needs to be at least as big as the expected result * depending on the operation. * After operation it will be updated with the actual size of the * result. * In case of error where the dst sgl size was insufficient, * it will be updated to the size required for the operation. * @__ctx: Start of private context data
*/ struct akcipher_request { struct crypto_async_request base; struct scatterlist *src; struct scatterlist *dst; unsignedint src_len; unsignedint dst_len; void *__ctx[] CRYPTO_MINALIGN_ATTR;
};
/** * struct crypto_akcipher - user-instantiated objects which encapsulate * algorithms and core processing logic * * @reqsize: Request context size required by algorithm implementation * @base: Common crypto API algorithm data structure
*/ struct crypto_akcipher { unsignedint reqsize;
struct crypto_tfm base;
};
/** * struct akcipher_alg - generic public key cipher algorithm * * @encrypt: Function performs an encrypt operation as defined by public key * algorithm. In case of error, where the dst_len was insufficient, * the req->dst_len will be updated to the size required for the * operation * @decrypt: Function performs a decrypt operation as defined by public key * algorithm. In case of error, where the dst_len was insufficient, * the req->dst_len will be updated to the size required for the * operation * @set_pub_key: Function invokes the algorithm specific set public key * function, which knows how to decode and interpret * the BER encoded public key and parameters * @set_priv_key: Function invokes the algorithm specific set private key * function, which knows how to decode and interpret * the BER encoded private key and parameters * @max_size: Function returns dest buffer size required for a given key. * @init: Initialize the cryptographic transformation object. * This function is used to initialize the cryptographic * transformation object. This function is called only once at * the instantiation time, right after the transformation context * was allocated. In case the cryptographic hardware has some * special requirements which need to be handled by software, this * function shall check for the precise requirement of the * transformation and put any software fallbacks in place. * @exit: Deinitialize the cryptographic transformation object. This is a * counterpart to @init, used to remove various changes set in * @init. * * @base: Common crypto API algorithm data structure
*/ struct akcipher_alg { int (*encrypt)(struct akcipher_request *req); int (*decrypt)(struct akcipher_request *req); int (*set_pub_key)(struct crypto_akcipher *tfm, constvoid *key, unsignedint keylen); int (*set_priv_key)(struct crypto_akcipher *tfm, constvoid *key, unsignedint keylen); unsignedint (*max_size)(struct crypto_akcipher *tfm); int (*init)(struct crypto_akcipher *tfm); void (*exit)(struct crypto_akcipher *tfm);
struct crypto_alg base;
};
/** * DOC: Generic Public Key Cipher API * * The Public Key Cipher API is used with the algorithms of type * CRYPTO_ALG_TYPE_AKCIPHER (listed as type "akcipher" in /proc/crypto)
*/
/** * crypto_alloc_akcipher() - allocate AKCIPHER tfm handle * @alg_name: is the cra_name / name or cra_driver_name / driver name of the * public key algorithm e.g. "rsa" * @type: specifies the type of the algorithm * @mask: specifies the mask for the algorithm * * Allocate a handle for public key algorithm. The returned struct * crypto_akcipher is the handle that is required for any subsequent * API invocation for the public key operations. * * Return: allocated handle in case of success; IS_ERR() is true in case * of an error, PTR_ERR() returns the error code.
*/ struct crypto_akcipher *crypto_alloc_akcipher(constchar *alg_name, u32 type,
u32 mask);
/** * crypto_free_akcipher() - free AKCIPHER tfm handle * * @tfm: AKCIPHER tfm handle allocated with crypto_alloc_akcipher() * * If @tfm is a NULL or error pointer, this function does nothing.
*/ staticinlinevoid crypto_free_akcipher(struct crypto_akcipher *tfm)
{
crypto_destroy_tfm(tfm, crypto_akcipher_tfm(tfm));
}
/** * akcipher_request_alloc() - allocates public key request * * @tfm: AKCIPHER tfm handle allocated with crypto_alloc_akcipher() * @gfp: allocation flags * * Return: allocated handle in case of success or NULL in case of an error.
*/ staticinlinestruct akcipher_request *akcipher_request_alloc( struct crypto_akcipher *tfm, gfp_t gfp)
{ struct akcipher_request *req;
req = kmalloc(sizeof(*req) + crypto_akcipher_reqsize(tfm), gfp); if (likely(req))
akcipher_request_set_tfm(req, tfm);
return req;
}
/** * akcipher_request_free() - zeroize and free public key request * * @req: request to free
*/ staticinlinevoid akcipher_request_free(struct akcipher_request *req)
{
kfree_sensitive(req);
}
/** * akcipher_request_set_callback() - Sets an asynchronous callback. * * Callback will be called when an asynchronous operation on a given * request is finished. * * @req: request that the callback will be set for * @flgs: specify for instance if the operation may backlog * @cmpl: callback which will be called * @data: private data used by the caller
*/ staticinlinevoid akcipher_request_set_callback(struct akcipher_request *req,
u32 flgs,
crypto_completion_t cmpl, void *data)
{
req->base.complete = cmpl;
req->base.data = data;
req->base.flags = flgs;
}
/** * akcipher_request_set_crypt() - Sets request parameters * * Sets parameters required by crypto operation * * @req: public key request * @src: ptr to input scatter list * @dst: ptr to output scatter list * @src_len: size of the src input scatter list to be processed * @dst_len: size of the dst output scatter list
*/ staticinlinevoid akcipher_request_set_crypt(struct akcipher_request *req, struct scatterlist *src, struct scatterlist *dst, unsignedint src_len, unsignedint dst_len)
{
req->src = src;
req->dst = dst;
req->src_len = src_len;
req->dst_len = dst_len;
}
/** * crypto_akcipher_maxsize() - Get len for output buffer * * Function returns the dest buffer size required for a given key. * Function assumes that the key is already set in the transformation. If this * function is called without a setkey or with a failed setkey, you will end up * in a NULL dereference. * * @tfm: AKCIPHER tfm handle allocated with crypto_alloc_akcipher()
*/ staticinlineunsignedint crypto_akcipher_maxsize(struct crypto_akcipher *tfm)
{ struct akcipher_alg *alg = crypto_akcipher_alg(tfm);
return alg->max_size(tfm);
}
/** * crypto_akcipher_encrypt() - Invoke public key encrypt operation * * Function invokes the specific public key encrypt operation for a given * public key algorithm * * @req: asymmetric key request * * Return: zero on success; error code in case of error
*/ staticinlineint crypto_akcipher_encrypt(struct akcipher_request *req)
{ struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
return crypto_akcipher_alg(tfm)->encrypt(req);
}
/** * crypto_akcipher_decrypt() - Invoke public key decrypt operation * * Function invokes the specific public key decrypt operation for a given * public key algorithm * * @req: asymmetric key request * * Return: zero on success; error code in case of error
*/ staticinlineint crypto_akcipher_decrypt(struct akcipher_request *req)
{ struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
return crypto_akcipher_alg(tfm)->decrypt(req);
}
/** * crypto_akcipher_sync_encrypt() - Invoke public key encrypt operation * * Function invokes the specific public key encrypt operation for a given * public key algorithm * * @tfm: AKCIPHER tfm handle allocated with crypto_alloc_akcipher() * @src: source buffer * @slen: source length * @dst: destination obuffer * @dlen: destination length * * Return: zero on success; error code in case of error
*/ int crypto_akcipher_sync_encrypt(struct crypto_akcipher *tfm, constvoid *src, unsignedint slen, void *dst, unsignedint dlen);
/** * crypto_akcipher_sync_decrypt() - Invoke public key decrypt operation * * Function invokes the specific public key decrypt operation for a given * public key algorithm * * @tfm: AKCIPHER tfm handle allocated with crypto_alloc_akcipher() * @src: source buffer * @slen: source length * @dst: destination obuffer * @dlen: destination length * * Return: Output length on success; error code in case of error
*/ int crypto_akcipher_sync_decrypt(struct crypto_akcipher *tfm, constvoid *src, unsignedint slen, void *dst, unsignedint dlen);
/** * crypto_akcipher_set_pub_key() - Invoke set public key operation * * Function invokes the algorithm specific set key function, which knows * how to decode and interpret the encoded key and parameters * * @tfm: tfm handle * @key: BER encoded public key, algo OID, paramlen, BER encoded * parameters * @keylen: length of the key (not including other data) * * Return: zero on success; error code in case of error
*/ staticinlineint crypto_akcipher_set_pub_key(struct crypto_akcipher *tfm, constvoid *key, unsignedint keylen)
{ struct akcipher_alg *alg = crypto_akcipher_alg(tfm);
return alg->set_pub_key(tfm, key, keylen);
}
/** * crypto_akcipher_set_priv_key() - Invoke set private key operation * * Function invokes the algorithm specific set key function, which knows * how to decode and interpret the encoded key and parameters * * @tfm: tfm handle * @key: BER encoded private key, algo OID, paramlen, BER encoded * parameters * @keylen: length of the key (not including other data) * * Return: zero on success; error code in case of error
*/ staticinlineint crypto_akcipher_set_priv_key(struct crypto_akcipher *tfm, constvoid *key, unsignedint keylen)
{ struct akcipher_alg *alg = crypto_akcipher_alg(tfm);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.