blob: d0eb8bc39fa5f0f50a709d011ef4a172a1e14bf2 [file] [log] [blame]
Meki Cherkaoui88d59cd2012-05-14 07:34:58 -07001
2 The 'RSA-Sign JavaScript Library' (jsrsasig) THIRD PARTY LICENSE:
3
4 Apr 30, 2012
5
6This document contains third party licensing information for
7the 'RSA-Sign JavaScript Library'. Where applicable,
8the text has not been edited from its original content or spelling.
9
10*********************************************************
11For Tom Wu's jsbn library - BigInteger and RSA
12
13base64.js - String encoder for Base64 and Hex
14jsbn.js - basic BigInteger class
15jsbn2.js - BigInteger class extension
16prng4.js - Random number generator
17rng.js - Random number generator
18rsa.js - RSAKey class for RSA public key encryption.
19rsa2.js - RSA class extension for RSA private key decryption.
20
21http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE
22
23*********************************************************
24
25Licensing
26---------
27
28This software is covered under the following copyright:
29
30/*
31 * Copyright (c) 2003-2005 Tom Wu
32 * All Rights Reserved.
33 *
34 * Permission is hereby granted, free of charge, to any person obtaining
35 * a copy of this software and associated documentation files (the
36 * "Software"), to deal in the Software without restriction, including
37 * without limitation the rights to use, copy, modify, merge, publish,
38 * distribute, sublicense, and/or sell copies of the Software, and to
39 * permit persons to whom the Software is furnished to do so, subject to
40 * the following conditions:
41 *
42 * The above copyright notice and this permission notice shall be
43 * included in all copies or substantial portions of the Software.
44 *
45 * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
46 * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
47 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
48 *
49 * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
50 * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
51 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
52 * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
53 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
54 *
55 * In addition, the following condition applies:
56 *
57 * All redistributions must retain an intact copy of this copyright notice
58 * and disclaimer.
59 */
60
61Address all questions regarding this license to:
62
63 Tom Wu
64 tjw@cs.Stanford.EDU
65
66
67*********************************************************
68For Paul Johnston's Hash Algorithm JavaScript
69
70sha1.js - SHA1 hash algorithm
71sha256.js - SHA256 hash algorithm
72sha512.js - SHA512 hash algorithm
73md5.js - MD5 hash algorithm
74ripemd160.js - RIPEMD-160 hash algorithm
75
76http://pajhome.org.uk/site/legal.html#bsdlicense
77
78*********************************************************
79
80The BSD License
81
82Copyright (c) 1998 - 2009, Paul Johnston & Contributors
83All rights reserved.
84
85Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
86
87Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
88
89Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
90
91THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
92