Skip to content

Commit

Permalink
0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lieser committed May 13, 2013
1 parent 880f05c commit 5c73eb0
Show file tree
Hide file tree
Showing 19 changed files with 4,054 additions and 4 deletions.
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2013 Philippe Lieser

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
dkim_verifier
=============

DKIM Verifier Extension for Mozilla Thunderbird
DKIM Verifier
=============

This is a Add-on for Mozilla Thunderbird, that verifies DKIM Signatures according to the RFC 6376 (http://tools.ietf.org/html/rfc6376)

Included third-party Libraries
------------------------------
- Tom Wu's jsbn library - BigInteger and RSA (http://www-cs-students.stanford.edu/~tjw/jsbn/)
- jsbn.js - basic BigInteger class
- jsbn2.js - BigInteger class extension
- rsa.js - RSAKey class for RSA public key encryption
- rng.js - Random number generator
- prng4.js - Random number generator
- base64.js - String encoder for Base64 and Hex
- Kenji Urushima's 'RSA-Sign JavaScript Library' (http://kjur.github.com/jsrsasign)
- asn1hex.js - simple ASN.1 parser to read hexadecimal encoded ASN.1 DER
- rsasign-1.2.js - RSAKey class extension for RSA signing and verification
- Joshua Tauberer's DNS Libary (part of Thunderbird Sender Verification Extension) (http://razor.occams.info/code/spf/)
- dns.js - DNS Library
117 changes: 117 additions & 0 deletions THIRDPARTY_LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
This document contains third party licensing information for third party
software components included within DKIM Verifier.


*******************************************************************************
*******************************************************************************
For Tom Wu's jsbn library - BigInteger and RSA

jsbn.js - basic BigInteger class
jsbn2.js - BigInteger class extension
rsa.js - RSAKey class for RSA public key encryption
rng.js - Random number generator
prng4.js - Random number generator
base64.js - String encoder for Base64 and Hex

Site:
http://www-cs-students.stanford.edu/~tjw/jsbn/
License:
http://www-cs-students.stanford.edu/~tjw/jsbn/LICENSE

*******************************************************************************

Licensing
---------

This software is covered under the following copyright:

/*
* Copyright (c) 2003-2005 Tom Wu
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
*
* IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
* THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* In addition, the following condition applies:
*
* All redistributions must retain an intact copy of this copyright notice
* and disclaimer.
*/

Address all questions regarding this license to:

Tom Wu
[email protected]


*******************************************************************************
*******************************************************************************
For Kenji Urushima's 'RSA-Sign JavaScript Library' (jsrsasig)

asn1hex.js - simple ASN.1 parser to read hexadecimal encoded ASN.1 DER
rsasign-1.2.js - RSAKey class extension for RSA signing and verification

Site:
http://kjur.github.com/jsrsasign
License:
http://kjur.github.com/jsrsasign/license/

*******************************************************************************

The 'jsrsasign'(RSA-Sign JavaScript Library) License

Copyright (c) 2010-2013 Kenji Urushima

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


*******************************************************************************
*******************************************************************************
For Joshua Tauberer's DNS Libary
(part of Thunderbird Sender Verification Extension)

dns.js - DNS Library

Site:
http://razor.occams.info/code/spf/

*******************************************************************************

Copyright 2005 Joshua Tauberer <http://razor.occams.info>

Feel free to use this file however you want, but
credit would be nice.
5 changes: 5 additions & 0 deletions chrome.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
content dkim_verifier chrome/content/
locale dkim_verifier en-US chrome/locale/en-US/
overlay chrome://messenger/content/msgHdrViewOverlay.xul chrome://dkim_verifier/content/msgHdrViewOverlay.xul
# skin mailhops classic/1.0 jar:chrome/mailhops.jar!/skin/classic/
# overlay chrome://messenger/content/messenger.xul chrome://dkim_verifier/content/myhelloworld.xul
Loading

0 comments on commit 5c73eb0

Please sign in to comment.