To check if you are affected by this bug, you may use the following procedure: Step 1: Select and copy the following block of text: ``` function reportUnprotectedKeys() { const { RNP } = ChromeUtils.import("chrome://openpgp/content/modules/RNP.jsm"); let prot; let unprot; [prot, unprot] = RNP.getProtectedKeysCount(); console.log("Number of unprotected keys: " + unprot); } reportUnprotectedKeys(); ``` Step 2: Use the menu to open the error console. Either use the menu shown on the top of the Thunderbird window, or click the "burger menu" (three horizontal lines) in the upper right of the Thunderbird Window. Select Tools, Developer Tools, Error Console. Step 3: Click the space after the two blue arrows. Paste the block that you have selected above, then press the enter key. The console will show a message saying "Number of unprotected keys". If the number shown is zero (0), you are not affected. If a number other than zero is shown, you are affected by this bug.
Bug 1710290 Comment 2 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
To check if you are affected by this bug, you may use the following procedure: Step 1: Select and copy the following block of text: ``` function reportUnprotectedKeys() { const { RNP } = ChromeUtils.import( "chrome://openpgp/content/modules/RNP.jsm" ); let [prot, unprot] = RNP.getProtectedKeysCount(); console.log("Number of protected keys: " + prot); console.log("Number of unprotected keys: " + unprot); } reportUnprotectedKeys(); ``` Step 2: Use the menu to open the error console. Either use the menu shown on the top of the Thunderbird window, or click the "burger menu" (three horizontal lines) in the upper right of the Thunderbird Window. Select Tools, Developer Tools, Error Console. Step 3: Click the space after the two blue arrows. Paste the block that you have selected above, then press the enter key. The console will show a message saying "Number of unprotected keys". If the number shown is zero (0), you are not affected. If a number other than zero is shown, you are affected by this bug. Edit, 2021-05-11: Improved logging code as suggested in comment 5 and comment 6.