Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | #include "nsISupports.idl" |
michael@0 | 6 | |
michael@0 | 7 | interface nsISMimeVerificationListener; |
michael@0 | 8 | |
michael@0 | 9 | [ptr] native UnsignedCharPtr(unsigned char); |
michael@0 | 10 | |
michael@0 | 11 | /* |
michael@0 | 12 | * This interface is currently not marked scriptable, |
michael@0 | 13 | * because its verification functions are meant to look like those |
michael@0 | 14 | * in nsICMSMessage. At the time the ptr type is eliminated in both |
michael@0 | 15 | * interfaces, both should be made scriptable. |
michael@0 | 16 | */ |
michael@0 | 17 | |
michael@0 | 18 | [uuid(a99a3203-39e3-45e1-909c-175b0e471c2b)] |
michael@0 | 19 | interface nsICMSMessage2 : nsISupports |
michael@0 | 20 | { |
michael@0 | 21 | /** |
michael@0 | 22 | * Async version of nsICMSMessage::VerifySignature. |
michael@0 | 23 | * Code will be executed on a background thread and |
michael@0 | 24 | * availability of results will be notified using a |
michael@0 | 25 | * call to nsISMimeVerificationListener. |
michael@0 | 26 | */ |
michael@0 | 27 | void asyncVerifySignature(in nsISMimeVerificationListener listener); |
michael@0 | 28 | |
michael@0 | 29 | /** |
michael@0 | 30 | * Async version of nsICMSMessage::VerifyDetachedSignature. |
michael@0 | 31 | * Code will be executed on a background thread and |
michael@0 | 32 | * availability of results will be notified using a |
michael@0 | 33 | * call to nsISMimeVerificationListener. |
michael@0 | 34 | * |
michael@0 | 35 | * We are using "native unsigned char" ptr, because the function |
michael@0 | 36 | * signatures of this one and nsICMSMessage::verifyDetachedSignature |
michael@0 | 37 | * should be the identical. Cleaning up nsICMSMessages needs to be |
michael@0 | 38 | * postponed, because this async version is needed on MOZILLA_1_8_BRANCH. |
michael@0 | 39 | * |
michael@0 | 40 | * Once both interfaces get cleaned up, the function signature should |
michael@0 | 41 | * look like: |
michael@0 | 42 | * [array, length_is(aDigestDataLen)] |
michael@0 | 43 | * in octet aDigestData, |
michael@0 | 44 | * in unsigned long aDigestDataLen); |
michael@0 | 45 | */ |
michael@0 | 46 | void asyncVerifyDetachedSignature(in nsISMimeVerificationListener listener, |
michael@0 | 47 | in UnsignedCharPtr aDigestData, |
michael@0 | 48 | in unsigned long aDigestDataLen); |
michael@0 | 49 | }; |
michael@0 | 50 | |
michael@0 | 51 | [uuid(56310af6-dffc-48b4-abca-85eae4059064)] |
michael@0 | 52 | interface nsISMimeVerificationListener : nsISupports { |
michael@0 | 53 | |
michael@0 | 54 | /** |
michael@0 | 55 | * Notify that results are ready, that have been requested |
michael@0 | 56 | * using nsICMSMessage2::asyncVerify[Detached]Signature() |
michael@0 | 57 | * |
michael@0 | 58 | * verificationResultCode matches synchronous result code from |
michael@0 | 59 | * nsICMSMessage::verify[Detached]Signature |
michael@0 | 60 | */ |
michael@0 | 61 | void notify(in nsICMSMessage2 verifiedMessage, |
michael@0 | 62 | in nsresult verificationResultCode); |
michael@0 | 63 | }; |
michael@0 | 64 |