example.pcap
is a traffic capture I have made on my local Linux box of and now I would like to decrypt it.
tshark -o "ssl.desegment_ssl_records: TRUE"
-o "ssl.desegment_ssl_application_data: TRUE"
-o "ssl.keys_list: www.example.com,443,http,example.pem"
-o "ssl.debug_file: /tmp/example.shark.log"
-nn -r example.pcap port 443
-w /tmp/example.443decrypted.pcap
but how do I option my key file, which I suppose is my client private key?