/* SPDX-License-Identifier: BSD-3-Clause */ #include #include #include #include "tools/fapi/tss2_template.h" /* Context struct used to store passed commandline parameters */ static struct cxt { char const *keyPath; char const *plainText; char const *cipherText; bool overwrite; } ctx; /* Parse commandline parameters */ static bool on_option(char key, char *value) { switch (key) { case 'f': ctx.overwrite = true; break; case 'o': ctx.cipherText = value; break; case 'p': ctx.keyPath = value; break; case 'i': ctx.plainText = value; break; } return true; } /* Define possible commandline parameters */ static bool tss2_tool_onstart(tpm2_options **opts) { struct option topts[] = { {"keyPath", required_argument, NULL, 'p'}, {"plainText", required_argument, NULL, 'i'}, {"cipherText", required_argument, NULL, 'o'}, {"force", no_argument , NULL, 'f'}, }; return (*opts = tpm2_options_new ("fo:p:i:", ARRAY_LEN(topts), topts, on_option, NULL, 0)) != NULL; } /* Execute specific tool */ static int tss2_tool_onrun (FAPI_CONTEXT *fctx) { /* Check availability of required parameters */ if (!ctx.keyPath) { fprintf (stderr, "No key path provided, use --keyPath\n"); return -1; } if (!ctx.plainText) { fprintf (stderr, "No text to encrypt provided, use --plainText\n"); return -1; } if (!ctx.cipherText) { fprintf (stderr, "No output file provided, --cipherText\n"); return -1; } /* Read plaintext file */ uint8_t *plainText; size_t plainTextSize; TSS2_RC r = open_read_and_close (ctx.plainText, (void**)&plainText, &plainTextSize); if (r){ return 1; } /* Execute FAPI command with passed arguments */ uint8_t *cipherText; size_t cipherTextSize; r = Fapi_Encrypt (fctx, ctx.keyPath, plainText, plainTextSize, &cipherText, &cipherTextSize); if (r != TSS2_RC_SUCCESS) { LOG_PERR ("Fapi_Encrypt", r); free (plainText); return 1; } free (plainText); /* Write returned data to file(s) */ r = open_write_and_close (ctx.cipherText, ctx.overwrite, cipherText, cipherTextSize); if (r) { Fapi_Free (cipherText); return 1; } Fapi_Free (cipherText); return 0; } TSS2_TOOL_REGISTER("encrypt", tss2_tool_onstart, tss2_tool_onrun, NULL)