15697Smcpowers/* ***** BEGIN LICENSE BLOCK ***** 25697Smcpowers * Version: MPL 1.1/GPL 2.0/LGPL 2.1 35697Smcpowers * 45697Smcpowers * The contents of this file are subject to the Mozilla Public License Version 55697Smcpowers * 1.1 (the "License"); you may not use this file except in compliance with 65697Smcpowers * the License. You may obtain a copy of the License at 75697Smcpowers * http://www.mozilla.org/MPL/ 85697Smcpowers * 95697Smcpowers * Software distributed under the License is distributed on an "AS IS" basis, 105697Smcpowers * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 115697Smcpowers * for the specific language governing rights and limitations under the 125697Smcpowers * License. 135697Smcpowers * 14*8622SMark.Powers@Sun.COM * The Original Code is the Netscape security libraries. 15*8622SMark.Powers@Sun.COM * 16*8622SMark.Powers@Sun.COM * The Initial Developer of the Original Code is 17*8622SMark.Powers@Sun.COM * Netscape Communications Corporation. 18*8622SMark.Powers@Sun.COM * Portions created by the Initial Developer are Copyright (C) 1994-2000 19*8622SMark.Powers@Sun.COM * the Initial Developer. All Rights Reserved. 20*8622SMark.Powers@Sun.COM * 21*8622SMark.Powers@Sun.COM * Contributor(s): 22*8622SMark.Powers@Sun.COM * Dr Vipul Gupta <vipul.gupta@sun.com>, Sun Microsystems Laboratories 23*8622SMark.Powers@Sun.COM * 24*8622SMark.Powers@Sun.COM * Alternatively, the contents of this file may be used under the terms of 25*8622SMark.Powers@Sun.COM * either the GNU General Public License Version 2 or later (the "GPL"), or 26*8622SMark.Powers@Sun.COM * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 27*8622SMark.Powers@Sun.COM * in which case the provisions of the GPL or the LGPL are applicable instead 28*8622SMark.Powers@Sun.COM * of those above. If you wish to allow use of your version of this file only 29*8622SMark.Powers@Sun.COM * under the terms of either the GPL or the LGPL, and not to allow others to 30*8622SMark.Powers@Sun.COM * use your version of this file under the terms of the MPL, indicate your 31*8622SMark.Powers@Sun.COM * decision by deleting the provisions above and replace them with the notice 32*8622SMark.Powers@Sun.COM * and other provisions required by the GPL or the LGPL. If you do not delete 33*8622SMark.Powers@Sun.COM * the provisions above, a recipient may use your version of this file under 34*8622SMark.Powers@Sun.COM * the terms of any one of the MPL, the GPL or the LGPL. 35*8622SMark.Powers@Sun.COM * 36*8622SMark.Powers@Sun.COM * ***** END LICENSE BLOCK ***** */ 37*8622SMark.Powers@Sun.COM 38*8622SMark.Powers@Sun.COM * ***** BEGIN LICENSE BLOCK ***** 39*8622SMark.Powers@Sun.COM * Version: MPL 1.1/GPL 2.0/LGPL 2.1 40*8622SMark.Powers@Sun.COM * 41*8622SMark.Powers@Sun.COM * The contents of this file are subject to the Mozilla Public License Version 42*8622SMark.Powers@Sun.COM * 1.1 (the "License"); you may not use this file except in compliance with 43*8622SMark.Powers@Sun.COM * the License. You may obtain a copy of the License at 44*8622SMark.Powers@Sun.COM * http://www.mozilla.org/MPL/ 45*8622SMark.Powers@Sun.COM * 46*8622SMark.Powers@Sun.COM * Software distributed under the License is distributed on an "AS IS" basis, 47*8622SMark.Powers@Sun.COM * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 48*8622SMark.Powers@Sun.COM * for the specific language governing rights and limitations under the 49*8622SMark.Powers@Sun.COM * License. 50*8622SMark.Powers@Sun.COM * 51*8622SMark.Powers@Sun.COM * The Original Code is the Multi-precision Binary Polynomial Arithmetic Library. 52*8622SMark.Powers@Sun.COM * 53*8622SMark.Powers@Sun.COM * The Initial Developer of the Original Code is 54*8622SMark.Powers@Sun.COM * Sun Microsystems, Inc. 55*8622SMark.Powers@Sun.COM * Portions created by the Initial Developer are Copyright (C) 2003 56*8622SMark.Powers@Sun.COM * the Initial Developer. All Rights Reserved. 57*8622SMark.Powers@Sun.COM * 58*8622SMark.Powers@Sun.COM * Contributor(s): 59*8622SMark.Powers@Sun.COM * Sheueling Chang Shantz <sheueling.chang@sun.com> and 60*8622SMark.Powers@Sun.COM * Douglas Stebila <douglas@stebila.ca> of Sun Laboratories. 61*8622SMark.Powers@Sun.COM * 62*8622SMark.Powers@Sun.COM * Alternatively, the contents of this file may be used under the terms of 63*8622SMark.Powers@Sun.COM * either the GNU General Public License Version 2 or later (the "GPL"), or 64*8622SMark.Powers@Sun.COM * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 65*8622SMark.Powers@Sun.COM * in which case the provisions of the GPL or the LGPL are applicable instead 66*8622SMark.Powers@Sun.COM * of those above. If you wish to allow use of your version of this file only 67*8622SMark.Powers@Sun.COM * under the terms of either the GPL or the LGPL, and not to allow others to 68*8622SMark.Powers@Sun.COM * use your version of this file under the terms of the MPL, indicate your 69*8622SMark.Powers@Sun.COM * decision by deleting the provisions above and replace them with the notice 70*8622SMark.Powers@Sun.COM * and other provisions required by the GPL or the LGPL. If you do not delete 71*8622SMark.Powers@Sun.COM * the provisions above, a recipient may use your version of this file under 72*8622SMark.Powers@Sun.COM * the terms of any one of the MPL, the GPL or the LGPL. 735697Smcpowers * 74*8622SMark.Powers@Sun.COM * ***** END LICENSE BLOCK ***** */ 75*8622SMark.Powers@Sun.COM 76*8622SMark.Powers@Sun.COM * ***** BEGIN LICENSE BLOCK ***** 77*8622SMark.Powers@Sun.COM * Version: MPL 1.1/GPL 2.0/LGPL 2.1 78*8622SMark.Powers@Sun.COM * 79*8622SMark.Powers@Sun.COM * The contents of this file are subject to the Mozilla Public License Version 80*8622SMark.Powers@Sun.COM * 1.1 (the "License"); you may not use this file except in compliance with 81*8622SMark.Powers@Sun.COM * the License. You may obtain a copy of the License at 82*8622SMark.Powers@Sun.COM * http://www.mozilla.org/MPL/ 83*8622SMark.Powers@Sun.COM * 84*8622SMark.Powers@Sun.COM * Software distributed under the License is distributed on an "AS IS" basis, 85*8622SMark.Powers@Sun.COM * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 86*8622SMark.Powers@Sun.COM * for the specific language governing rights and limitations under the 87*8622SMark.Powers@Sun.COM * License. 88*8622SMark.Powers@Sun.COM * 89*8622SMark.Powers@Sun.COM * The Original Code is the MPI Arbitrary Precision Integer Arithmetic library. 90*8622SMark.Powers@Sun.COM * 91*8622SMark.Powers@Sun.COM * The Initial Developer of the Original Code is 92*8622SMark.Powers@Sun.COM * Michael J. Fromberger. 93*8622SMark.Powers@Sun.COM * Portions created by the Initial Developer are Copyright (C) 1997 94*8622SMark.Powers@Sun.COM * the Initial Developer. All Rights Reserved. 95*8622SMark.Powers@Sun.COM * 96*8622SMark.Powers@Sun.COM * Contributor(s): 97*8622SMark.Powers@Sun.COM * Netscape Communications Corporation 985697Smcpowers * 99*8622SMark.Powers@Sun.COM * Alternatively, the contents of this file may be used under the terms of 100*8622SMark.Powers@Sun.COM * either the GNU General Public License Version 2 or later (the "GPL"), or 101*8622SMark.Powers@Sun.COM * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 102*8622SMark.Powers@Sun.COM * in which case the provisions of the GPL or the LGPL are applicable instead 103*8622SMark.Powers@Sun.COM * of those above. If you wish to allow use of your version of this file only 104*8622SMark.Powers@Sun.COM * under the terms of either the GPL or the LGPL, and not to allow others to 105*8622SMark.Powers@Sun.COM * use your version of this file under the terms of the MPL, indicate your 106*8622SMark.Powers@Sun.COM * decision by deleting the provisions above and replace them with the notice 107*8622SMark.Powers@Sun.COM * and other provisions required by the GPL or the LGPL. If you do not delete 108*8622SMark.Powers@Sun.COM * the provisions above, a recipient may use your version of this file under 109*8622SMark.Powers@Sun.COM * the terms of any one of the MPL, the GPL or the LGPL. 110*8622SMark.Powers@Sun.COM * 111*8622SMark.Powers@Sun.COM * ***** END LICENSE BLOCK ***** */ 112*8622SMark.Powers@Sun.COM 113*8622SMark.Powers@Sun.COM * ***** BEGIN LICENSE BLOCK ***** 114*8622SMark.Powers@Sun.COM * Version: MPL 1.1/GPL 2.0/LGPL 2.1 115*8622SMark.Powers@Sun.COM * 116*8622SMark.Powers@Sun.COM * The contents of this file are subject to the Mozilla Public License Version 117*8622SMark.Powers@Sun.COM * 1.1 (the "License"); you may not use this file except in compliance with 118*8622SMark.Powers@Sun.COM * the License. You may obtain a copy of the License at 119*8622SMark.Powers@Sun.COM * http://www.mozilla.org/MPL/ 120*8622SMark.Powers@Sun.COM * 121*8622SMark.Powers@Sun.COM * Software distributed under the License is distributed on an "AS IS" basis, 122*8622SMark.Powers@Sun.COM * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 123*8622SMark.Powers@Sun.COM * for the specific language governing rights and limitations under the 124*8622SMark.Powers@Sun.COM * License. 125*8622SMark.Powers@Sun.COM * 126*8622SMark.Powers@Sun.COM * The Original Code is the MPI Arbitrary Precision Integer Arithmetic library. 127*8622SMark.Powers@Sun.COM * 128*8622SMark.Powers@Sun.COM * The Initial Developer of the Original Code is 129*8622SMark.Powers@Sun.COM * Michael J. Fromberger. 130*8622SMark.Powers@Sun.COM * Portions created by the Initial Developer are Copyright (C) 1998 131*8622SMark.Powers@Sun.COM * the Initial Developer. All Rights Reserved. 132*8622SMark.Powers@Sun.COM * 133*8622SMark.Powers@Sun.COM * Contributor(s): 134*8622SMark.Powers@Sun.COM * Netscape Communications Corporation 1355697Smcpowers * 1365697Smcpowers * Alternatively, the contents of this file may be used under the terms of 1375697Smcpowers * either the GNU General Public License Version 2 or later (the "GPL"), or 1385697Smcpowers * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 1395697Smcpowers * in which case the provisions of the GPL or the LGPL are applicable instead 1405697Smcpowers * of those above. If you wish to allow use of your version of this file only 1415697Smcpowers * under the terms of either the GPL or the LGPL, and not to allow others to 1425697Smcpowers * use your version of this file under the terms of the MPL, indicate your 1435697Smcpowers * decision by deleting the provisions above and replace them with the notice 1445697Smcpowers * and other provisions required by the GPL or the LGPL. If you do not delete 1455697Smcpowers * the provisions above, a recipient may use your version of this file under 1465697Smcpowers * the terms of any one of the MPL, the GPL or the LGPL. 1475697Smcpowers * 1485697Smcpowers * ***** END LICENSE BLOCK ***** */ 149*8622SMark.Powers@Sun.COM 150*8622SMark.Powers@Sun.COM * ***** BEGIN LICENSE BLOCK ***** 151*8622SMark.Powers@Sun.COM * Version: MPL 1.1/GPL 2.0/LGPL 2.1 152*8622SMark.Powers@Sun.COM * 153*8622SMark.Powers@Sun.COM * The contents of this file are subject to the Mozilla Public License Version 154*8622SMark.Powers@Sun.COM * 1.1 (the "License"); you may not use this file except in compliance with 155*8622SMark.Powers@Sun.COM * the License. You may obtain a copy of the License at 156*8622SMark.Powers@Sun.COM * http://www.mozilla.org/MPL/ 157*8622SMark.Powers@Sun.COM * 158*8622SMark.Powers@Sun.COM * Software distributed under the License is distributed on an "AS IS" basis, 159*8622SMark.Powers@Sun.COM * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 160*8622SMark.Powers@Sun.COM * for the specific language governing rights and limitations under the 161*8622SMark.Powers@Sun.COM * License. 162*8622SMark.Powers@Sun.COM * 163*8622SMark.Powers@Sun.COM * The Original Code is the MPI Arbitrary Precision Integer Arithmetic library. 164*8622SMark.Powers@Sun.COM * 165*8622SMark.Powers@Sun.COM * The Initial Developer of the Original Code is 166*8622SMark.Powers@Sun.COM * Michael J. Fromberger. 167*8622SMark.Powers@Sun.COM * Portions created by the Initial Developer are Copyright (C) 1998 168*8622SMark.Powers@Sun.COM * the Initial Developer. All Rights Reserved. 169*8622SMark.Powers@Sun.COM * 170*8622SMark.Powers@Sun.COM * Contributor(s): 171*8622SMark.Powers@Sun.COM * Netscape Communications Corporation 172*8622SMark.Powers@Sun.COM * Douglas Stebila <douglas@stebila.ca> of Sun Laboratories. 173*8622SMark.Powers@Sun.COM * 174*8622SMark.Powers@Sun.COM * Alternatively, the contents of this file may be used under the terms of 175*8622SMark.Powers@Sun.COM * either the GNU General Public License Version 2 or later (the "GPL"), or 176*8622SMark.Powers@Sun.COM * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 177*8622SMark.Powers@Sun.COM * in which case the provisions of the GPL or the LGPL are applicable instead 178*8622SMark.Powers@Sun.COM * of those above. If you wish to allow use of your version of this file only 179*8622SMark.Powers@Sun.COM * under the terms of either the GPL or the LGPL, and not to allow others to 180*8622SMark.Powers@Sun.COM * use your version of this file under the terms of the MPL, indicate your 181*8622SMark.Powers@Sun.COM * decision by deleting the provisions above and replace them with the notice 182*8622SMark.Powers@Sun.COM * and other provisions required by the GPL or the LGPL. If you do not delete 183*8622SMark.Powers@Sun.COM * the provisions above, a recipient may use your version of this file under 184*8622SMark.Powers@Sun.COM * the terms of any one of the MPL, the GPL or the LGPL. 185*8622SMark.Powers@Sun.COM * 186*8622SMark.Powers@Sun.COM * ***** END LICENSE BLOCK ***** */ 187*8622SMark.Powers@Sun.COM 188*8622SMark.Powers@Sun.COM * ***** BEGIN LICENSE BLOCK ***** 189*8622SMark.Powers@Sun.COM * Version: MPL 1.1/GPL 2.0/LGPL 2.1 190*8622SMark.Powers@Sun.COM * 191*8622SMark.Powers@Sun.COM * The contents of this file are subject to the Mozilla Public License Version 192*8622SMark.Powers@Sun.COM * 1.1 (the "License"); you may not use this file except in compliance with 193*8622SMark.Powers@Sun.COM * the License. You may obtain a copy of the License at 194*8622SMark.Powers@Sun.COM * http://www.mozilla.org/MPL/ 195*8622SMark.Powers@Sun.COM * 196*8622SMark.Powers@Sun.COM * Software distributed under the License is distributed on an "AS IS" basis, 197*8622SMark.Powers@Sun.COM * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 198*8622SMark.Powers@Sun.COM * for the specific language governing rights and limitations under the 199*8622SMark.Powers@Sun.COM * License. 200*8622SMark.Powers@Sun.COM * 201*8622SMark.Powers@Sun.COM * The Original Code is the MPI Arbitrary Precision Integer Arithmetic library. 202*8622SMark.Powers@Sun.COM * 203*8622SMark.Powers@Sun.COM * The Initial Developer of the Original Code is 204*8622SMark.Powers@Sun.COM * Michael J. Fromberger. 205*8622SMark.Powers@Sun.COM * Portions created by the Initial Developer are Copyright (C) 1998 206*8622SMark.Powers@Sun.COM * the Initial Developer. All Rights Reserved. 207*8622SMark.Powers@Sun.COM * 208*8622SMark.Powers@Sun.COM * Contributor(s): 209*8622SMark.Powers@Sun.COM * 210*8622SMark.Powers@Sun.COM * Alternatively, the contents of this file may be used under the terms of 211*8622SMark.Powers@Sun.COM * either the GNU General Public License Version 2 or later (the "GPL"), or 212*8622SMark.Powers@Sun.COM * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 213*8622SMark.Powers@Sun.COM * in which case the provisions of the GPL or the LGPL are applicable instead 214*8622SMark.Powers@Sun.COM * of those above. If you wish to allow use of your version of this file only 215*8622SMark.Powers@Sun.COM * under the terms of either the GPL or the LGPL, and not to allow others to 216*8622SMark.Powers@Sun.COM * use your version of this file under the terms of the MPL, indicate your 217*8622SMark.Powers@Sun.COM * decision by deleting the provisions above and replace them with the notice 218*8622SMark.Powers@Sun.COM * and other provisions required by the GPL or the LGPL. If you do not delete 219*8622SMark.Powers@Sun.COM * the provisions above, a recipient may use your version of this file under 220*8622SMark.Powers@Sun.COM * the terms of any one of the MPL, the GPL or the LGPL. 221*8622SMark.Powers@Sun.COM * 222*8622SMark.Powers@Sun.COM * ***** END LICENSE BLOCK ***** */ 223*8622SMark.Powers@Sun.COM 224*8622SMark.Powers@Sun.COM/* ***** BEGIN LICENSE BLOCK ***** 225*8622SMark.Powers@Sun.COM * Version: MPL 1.1/GPL 2.0/LGPL 2.1 226*8622SMark.Powers@Sun.COM * 227*8622SMark.Powers@Sun.COM * The contents of this file are subject to the Mozilla Public License Version 228*8622SMark.Powers@Sun.COM * 1.1 (the "License"); you may not use this file except in compliance with 229*8622SMark.Powers@Sun.COM * the License. You may obtain a copy of the License at 230*8622SMark.Powers@Sun.COM * http://www.mozilla.org/MPL/ 231*8622SMark.Powers@Sun.COM * 232*8622SMark.Powers@Sun.COM * Software distributed under the License is distributed on an "AS IS" basis, 233*8622SMark.Powers@Sun.COM * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 234*8622SMark.Powers@Sun.COM * for the specific language governing rights and limitations under the 235*8622SMark.Powers@Sun.COM * License. 236*8622SMark.Powers@Sun.COM * 237*8622SMark.Powers@Sun.COM * The Original Code is the Netscape security libraries. 238*8622SMark.Powers@Sun.COM * 239*8622SMark.Powers@Sun.COM * The Initial Developer of the Original Code is 240*8622SMark.Powers@Sun.COM * Netscape Communications Corporation. 241*8622SMark.Powers@Sun.COM * Portions created by the Initial Developer are Copyright (C) 2000 242*8622SMark.Powers@Sun.COM * the Initial Developer. All Rights Reserved. 243*8622SMark.Powers@Sun.COM * 244*8622SMark.Powers@Sun.COM * Contributor(s): 245*8622SMark.Powers@Sun.COM * Sheueling Chang Shantz <sheueling.chang@sun.com>, 246*8622SMark.Powers@Sun.COM * Stephen Fung <stephen.fung@sun.com>, and 247*8622SMark.Powers@Sun.COM * Douglas Stebila <douglas@stebila.ca> of Sun Laboratories. 248*8622SMark.Powers@Sun.COM * 249*8622SMark.Powers@Sun.COM * Alternatively, the contents of this file may be used under the terms of 250*8622SMark.Powers@Sun.COM * either the GNU General Public License Version 2 or later (the "GPL"), or 251*8622SMark.Powers@Sun.COM * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 252*8622SMark.Powers@Sun.COM * in which case the provisions of the GPL or the LGPL are applicable instead 253*8622SMark.Powers@Sun.COM * of those above. If you wish to allow use of your version of this file only 254*8622SMark.Powers@Sun.COM * under the terms of either the GPL or the LGPL, and not to allow others to 255*8622SMark.Powers@Sun.COM * use your version of this file under the terms of the MPL, indicate your 256*8622SMark.Powers@Sun.COM * decision by deleting the provisions above and replace them with the notice 257*8622SMark.Powers@Sun.COM * and other provisions required by the GPL or the LGPL. If you do not delete 258*8622SMark.Powers@Sun.COM * the provisions above, a recipient may use your version of this file under 259*8622SMark.Powers@Sun.COM * the terms of any one of the MPL, the GPL or the LGPL. 260*8622SMark.Powers@Sun.COM * 261*8622SMark.Powers@Sun.COM * ***** END LICENSE BLOCK ***** */ 262*8622SMark.Powers@Sun.COM 263*8622SMark.Powers@Sun.COM * ***** BEGIN LICENSE BLOCK ***** 264*8622SMark.Powers@Sun.COM * Version: MPL 1.1/GPL 2.0/LGPL 2.1 265*8622SMark.Powers@Sun.COM * 266*8622SMark.Powers@Sun.COM * The contents of this file are subject to the Mozilla Public License Version 267*8622SMark.Powers@Sun.COM * 1.1 (the "License"); you may not use this file except in compliance with 268*8622SMark.Powers@Sun.COM * the License. You may obtain a copy of the License at 269*8622SMark.Powers@Sun.COM * http://www.mozilla.org/MPL/ 270*8622SMark.Powers@Sun.COM * 271*8622SMark.Powers@Sun.COM * Software distributed under the License is distributed on an "AS IS" basis, 272*8622SMark.Powers@Sun.COM * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 273*8622SMark.Powers@Sun.COM * for the specific language governing rights and limitations under the 274*8622SMark.Powers@Sun.COM * License. 275*8622SMark.Powers@Sun.COM * 276*8622SMark.Powers@Sun.COM * The Original Code is the MPI Arbitrary Precision Integer Arithmetic library. 277*8622SMark.Powers@Sun.COM * 278*8622SMark.Powers@Sun.COM * The Initial Developer of the Original Code is 279*8622SMark.Powers@Sun.COM * Michael J. Fromberger. 280*8622SMark.Powers@Sun.COM * Portions created by the Initial Developer are Copyright (C) 1997 281*8622SMark.Powers@Sun.COM * the Initial Developer. All Rights Reserved. 282*8622SMark.Powers@Sun.COM * 283*8622SMark.Powers@Sun.COM * Contributor(s): 284*8622SMark.Powers@Sun.COM * 285*8622SMark.Powers@Sun.COM * Alternatively, the contents of this file may be used under the terms of 286*8622SMark.Powers@Sun.COM * either the GNU General Public License Version 2 or later (the "GPL"), or 287*8622SMark.Powers@Sun.COM * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 288*8622SMark.Powers@Sun.COM * in which case the provisions of the GPL or the LGPL are applicable instead 289*8622SMark.Powers@Sun.COM * of those above. If you wish to allow use of your version of this file only 290*8622SMark.Powers@Sun.COM * under the terms of either the GPL or the LGPL, and not to allow others to 291*8622SMark.Powers@Sun.COM * use your version of this file under the terms of the MPL, indicate your 292*8622SMark.Powers@Sun.COM * decision by deleting the provisions above and replace them with the notice 293*8622SMark.Powers@Sun.COM * and other provisions required by the GPL or the LGPL. If you do not delete 294*8622SMark.Powers@Sun.COM * the provisions above, a recipient may use your version of this file under 295*8622SMark.Powers@Sun.COM * the terms of any one of the MPL, the GPL or the LGPL. 296*8622SMark.Powers@Sun.COM * 297*8622SMark.Powers@Sun.COM * ***** END LICENSE BLOCK ***** */ 298*8622SMark.Powers@Sun.COM 299*8622SMark.Powers@Sun.COM/* 300*8622SMark.Powers@Sun.COM * Sun elects to use this software under the MPL license. 301*8622SMark.Powers@Sun.COM */ 302*8622SMark.Powers@Sun.COM/* 303*8622SMark.Powers@Sun.COM * Source location: 304*8622SMark.Powers@Sun.COM * The source for this code is available at opensolaris.org under the 305*8622SMark.Powers@Sun.COM * terms of the Mozilla Public License Version 1.1. Contact 306*8622SMark.Powers@Sun.COM * on-discuss@opensolaris.org for details. 307*8622SMark.Powers@Sun.COM */ 308