22 lines
467 B
Text
22 lines
467 B
Text
|
#!/bin/sh
|
||
|
|
||
|
S=`pwd`/fips/sha1/fips_standalone_sha1
|
||
|
|
||
|
cd fips/sha1
|
||
|
$S fips_standalone_sha1.c fips_sha1dgst.c fips_sha_locl.h fips_md32_common.h > standalone.sha1
|
||
|
|
||
|
cd ..
|
||
|
$S fips.c fips_err.c fips.h > fingerprint.sha1
|
||
|
|
||
|
cd rand
|
||
|
$S fips_rand.c fips_rand.h > fingerprint.sha1
|
||
|
|
||
|
cd ../sha1
|
||
|
$S fips_sha1dgst.c fips_sha_locl.h fips_md32_common.h > fingerprint.sha1
|
||
|
|
||
|
cd ../aes
|
||
|
$S fips_aes_core.c fips_aes_locl.h > fingerprint.sha1
|
||
|
|
||
|
cd ../dsa
|
||
|
$S fips_dsa_ossl.c > fingerprint.sha1
|