How to get Cipher details from .ppk file

Is it possible to get the Cipher name from .ppk file? For e.g. name like TLS-CHACHA20-POLY1305-SHA256 or ECDHE-ECDSA-AES256-GCM-SHA384

Edit: Based on the responses in answers and comments, it seems I posted an invalid query here. Apologies, I am a newbie so was not aware about the concepts.


Solution 1:

According to the following PPK format description you can find SSH algorithm encoded as a string with key algorithm-name and the key encryption algorithm as a string encryption-type.

Solution 2:

A PPK file is a key file. There is no cipher like the one you've specified inside it - specifically since you specified TLS ciphers which are different from SSH ciphers. So there is no such cipher to get from the PPK file.