在Linux上使用certutil實(shí)現(xiàn)證書(shū)鎖定,可以通過(guò)以下步驟:
sudo apt-get install libnss3-tools
certutil -N -d sql:/path/to/certdir
其中,/path/to/certdir
是證書(shū)數(shù)據(jù)庫(kù)存儲(chǔ)路徑。
certutil -A -n "Certificate Name" -t "C,," -d sql:/path/to/certdir -i /path/to/certificate.crt
其中,"Certificate Name"
是證書(shū)名稱(chēng),/path/to/certdir
是證書(shū)數(shù)據(jù)庫(kù)存儲(chǔ)路徑,/path/to/certificate.crt
是證書(shū)文件路徑。
certutil -M -n "Certificate Name" -t ",," -d sql:/path/to/certdir
其中,"Certificate Name"
是證書(shū)名稱(chēng),/path/to/certdir
是證書(shū)數(shù)據(jù)庫(kù)存儲(chǔ)路徑。
通過(guò)以上步驟,就可以使用certutil在Linux上實(shí)現(xiàn)證書(shū)鎖定。