Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
7 righe
389 B
7 righe
389 B
#!/bin/bash |
|
#questa usa le marche temporali a pagamento |
|
openssl ts -query -sha256 -data $1 -cert | tee $1.tsq | /etc/pki/tls/misc/tsget -h https://servizi.arubapec.it/tsa/ngrequest.php -o $1.tsr |
|
# |
|
#questa usa le marche temporali demo non a pagamento |
|
#openssl ts -query -data $1 -cert | tee $1.tsq | /etc/pki/tls/misc/tsget -h http://timestamping.edelweb.fr/service/tsp -o $1.tsr |
|
rm $1.tsq
|
|
|