27 lines
750 B
Bash
Executable file
27 lines
750 B
Bash
Executable file
#!/bin/sh
|
|
|
|
S=`pwd`/fips/sha1/fips_standalone_sha1
|
|
|
|
cd fips/sha1
|
|
$S fips_sha1dgst.c fips_sha1_selftest.c fips_standalone_sha1.c fips_sha_locl.h fips_md32_common.h > standalone.sha1
|
|
|
|
cd ..
|
|
$S fips.c fips_err_wrapper.c fips.h fips_err.h > fingerprint.sha1
|
|
|
|
cd rand
|
|
$S fips_rand.c fips_rand.h > fingerprint.sha1
|
|
|
|
cd ../sha1
|
|
$S fips_sha1dgst.c fips_sha1_selftest.c fips_sha_locl.h fips_md32_common.h > fingerprint.sha1
|
|
|
|
cd ../aes
|
|
$S fips_aes_core.c fips_aes_selftest.c fips_aes_locl.h > fingerprint.sha1
|
|
|
|
cd ../dsa
|
|
$S fips_dsa_ossl.c fips_dsa_gen.c fips_dsa_selftest.c > fingerprint.sha1
|
|
|
|
cd ../des
|
|
$S fips_des_enc.c fips_des_selftest.c fips_des_locl.h > fingerprint.sha1
|
|
|
|
cd ../rsa
|
|
$S fips_rsa_eay.c fips_rsa_gen.c fips_rsa_selftest.c > fingerprint.sha1
|