Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Unified Diff: utility/Makefile

Issue 6334133: Add utility to pad a given hash for PKCS1.5 signatures (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: fix messages Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/sign_data.sh ('k') | utility/pad_digest_utility.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utility/Makefile
diff --git a/utility/Makefile b/utility/Makefile
index 973d7855e5f4b73c0c09d9171ca7a087e5f0310e..021ac8d8687be938142be0283420950188243348 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -21,6 +21,7 @@ TARGET_NAMES = dumpRSAPublicKey \
dump_kernel_config \
gbb_utility \
load_kernel_test \
+ pad_digest_utility \
signature_digest_utility \
tlcl_generator \
tpm_init_temp_fix \
@@ -60,6 +61,9 @@ ${BUILD_ROOT}/bmpblk_utility: bmpblk_utility.cc
${BUILD_ROOT}/load_kernel_test: load_kernel_test.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
+${BUILD_ROOT}/pad_digest_utility: pad_digest_utility.c $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
+
${BUILD_ROOT}/signature_digest_utility: signature_digest_utility.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
« no previous file with comments | « scripts/sign_data.sh ('k') | utility/pad_digest_utility.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698