diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-07 20:55:06 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-07-07 20:55:06 +0800 |
commit | 9e7d5d9d3b4ad686409fec7beb08792d38052a2c (patch) | |
tree | 30b1d1ddfb99e73c08125df3b9806eebff0506a6 /crypto/ecies/asn1.go | |
parent | 3016f238646510ed309b76d571addf381e341af4 (diff) | |
parent | b2d18393c4287a348f3776d1ddf9bcd01758ba8a (diff) | |
download | go-tangerine-9e7d5d9d3b4ad686409fec7beb08792d38052a2c.tar go-tangerine-9e7d5d9d3b4ad686409fec7beb08792d38052a2c.tar.gz go-tangerine-9e7d5d9d3b4ad686409fec7beb08792d38052a2c.tar.bz2 go-tangerine-9e7d5d9d3b4ad686409fec7beb08792d38052a2c.tar.lz go-tangerine-9e7d5d9d3b4ad686409fec7beb08792d38052a2c.tar.xz go-tangerine-9e7d5d9d3b4ad686409fec7beb08792d38052a2c.tar.zst go-tangerine-9e7d5d9d3b4ad686409fec7beb08792d38052a2c.zip |
Merge pull request #1426 from fjl/license
all: update license information and godoc comments
Diffstat (limited to 'crypto/ecies/asn1.go')
-rw-r--r-- | crypto/ecies/asn1.go | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/crypto/ecies/asn1.go b/crypto/ecies/asn1.go index 3ef194ea0..0a478e435 100644 --- a/crypto/ecies/asn1.go +++ b/crypto/ecies/asn1.go @@ -1,3 +1,32 @@ +// Copyright (c) 2013 Kyle Isom <kyle@tyrfingr.is> +// Copyright (c) 2012 The Go Authors. All rights reserved. +// +// Redistribution and use in source and binary forms, with or without +// modification, are permitted provided that the following conditions are +// met: +// +// * Redistributions 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. +// * Neither the name of Google Inc. nor the names of its +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS 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. + package ecies import ( |