mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-10-05 19:18:01 +08:00
18 lines
242 B
Bash
Executable File
18 lines
242 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cnt=0
|
|
IFS=$'\n'
|
|
LIST=`cat csp.lst`
|
|
|
|
for i in $LIST
|
|
do
|
|
cat >HCSP.$cnt <<END
|
|
CRYPT_PROVIDER = $i
|
|
PROVIDER_TYPE = 1
|
|
CRYPT_CONTAINER = default
|
|
CERTIFICATE_STORE = AuthRoot
|
|
CERTIFICATE_NAME = Microsoft
|
|
END
|
|
let cnt=cnt+1
|
|
done
|