00001 /* ***** BEGIN LICENSE BLOCK ***** 00002 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 00003 * 00004 * The contents of this file are subject to the Mozilla Public License Version 00005 * 1.1 (the "License"); you may not use this file except in compliance with 00006 * the License. You may obtain a copy of the License at 00007 * http://www.mozilla.org/MPL/ 00008 * 00009 * Software distributed under the License is distributed on an "AS IS" basis, 00010 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 00011 * for the specific language governing rights and limitations under the 00012 * License. 00013 * 00014 * The Original Code is JabberZilla. 00015 * 00016 * The Initial Developer of the Original Code is Pawel Chmielowski 00017 * Portions created by the Pawel Chmielowski are Copyright (C) Pawel 00018 * Chmielowski. All Rights Reserved. 00019 * 00020 * Contributor(s): 00021 * 00022 * Alternatively, the contents of this file may be used under the terms of 00023 * either the GNU General Public License Version 2 or later (the "GPL"), or 00024 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 00025 * in which case the provisions of the GPL or the LGPL are applicable instead 00026 * of those above. If you wish to allow use of your version of this file only 00027 * under the terms of either the GPL or the LGPL, and not to allow others to 00028 * use your version of this file under the terms of the MPL, indicate your 00029 * decision by deleting the provisions above and replace them with the notice 00030 * and other provisions required by the GPL or the LGPL. If you do not delete 00031 * the provisions above, a recipient may use your version of this file under 00032 * the terms of any one of the MPL, the GPL or the LGPL. 00033 * 00034 * ***** END LICENSE BLOCK ***** */ 00035 00036 #include "nsISupports.idl" 00037 00038 [scriptable, uuid(74c5c7fb-1766-46be-b3c9-8df8441280d6)] 00039 interface jzICrypto : nsISupports 00040 { 00041 AString md5Sum(in PRUint32 size, [size_is(size)] in string aString); 00042 AString md5SumBytes(in PRUint32 size, [array, size_is(size)] in PRUint8 aBytes); 00043 AString sha1Sum(in PRUint32 size, [size_is(size)] in string aString); 00044 AString sha1SumBytes(in PRUint32 size, [array, size_is(size)] in PRUint8 aBytes); 00045 }; 00046 00047 %{C++ 00048 00049 #define JZ_JZCRYPTO_CONTRACTID "@jabberzilla/crypto;1" 00050 00051 #define JZ_JZCRYPTO_CID \ 00052 { /* 79ff5e29-f2d8-42f2-b390-acd992268944 */ \ 00053 0x79ff5e29, \ 00054 0xf2d8, \ 00055 0x42f2, \ 00056 {0xb3, 0x90, 0xac, 0xd9, 0x92, 0x26, 0x89, 0x44 } \ 00057 } 00058 00059 %} 00060
1.4.0