Lines Matching full:blob
23 * DOC: dcp blob format
29 * key stored in the key blob.
32 * blob encryption key (BEK) and 128-bit nonce. The BEK and nonce are used to
37 * BEK-encrypted payload and authentication tag make up the blob format together
42 * struct dcp_blob_fmt - DCP BLOB format.
53 * The total size of a DCP BLOB is sizeof(struct dcp_blob_fmt) + @payload_len +
202 struct dcp_blob_fmt *b = (struct dcp_blob_fmt *)p->blob; in trusted_dcp_seal()
221 pr_err("Unable to encrypt blob payload: %i\n", ret); in trusted_dcp_seal()
227 pr_err("Unable to encrypt blob key: %i\n", ret); in trusted_dcp_seal()
244 struct dcp_blob_fmt *b = (struct dcp_blob_fmt *)p->blob; in trusted_dcp_unseal()
249 pr_err("DCP blob has bad version: %i, expected %i\n", in trusted_dcp_unseal()
258 pr_err("DCP blob has bad length: %i != %i\n", blen, in trusted_dcp_unseal()
272 pr_err("Unable to decrypt blob key: %i\n", ret); in trusted_dcp_unseal()