Merge pull request #8466 from blue-devil/master

python-ecdsa added
This commit is contained in:
Blue DeviL
2020-04-30 01:25:15 +03:00
committed by GitHub
10 changed files with 236371 additions and 236106 deletions
+236210 -236104
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
3de544b4360a6a91ea160d6cea86a61618eb9713
f8df9cf92a785b6c64c948bc30da3836a7dc26ee
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
43fabf4dc8a9ff482d7b426d77d19d8ac0b696b6
c3e0b0648a9d589cccf01e566edaa0926012f3d7
@@ -0,0 +1,13 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
def build():
pythonmodules.compile()
def install():
pythonmodules.install()
@@ -0,0 +1,58 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-ecdsa</Name>
<Homepage>https://github.com/warner/python-ecdsa</Homepage>
<Packager>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>ECDSA implementation for Python</Summary>
<Description>This is an easy-to-use implementation of ECDSA cryptography (Elliptic Curve Digital Signature Algorithm), implemented purely in Python, released under the MIT license. With this library, you can quickly create keypairs (signing key and verifying key), sign messages, and verify the signatures. The keys and signatures are very short, making them easy to handle and incorporate into other protocols.</Description>
<Archive sha1sum="b30cd3527393e262e0dd8c77423e4e8907c2936c" type="targz">https://github.com/warner/python-ecdsa/archive/python-ecdsa-0.15.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-setuptools</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-ecdsa</Name>
<Summary>ECDSA module for python</Summary>
<RuntimeDependencies>
<Dependency>python-six</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc/python-ecdsa</Path>
<Path fileType="library">/usr/lib/python2*</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2020-01-23</Date>
<Version>0.15</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="2">
<Date>2019-11-21</Date>
<Version>0.14.1</Version>
<Comment>Ver. bump</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2016-04-01</Date>
<Version>0.13</Version>
<Comment>First Pisi Release, built with docker</Comment>
<Name>İbrahim KARAGÜZEL</Name>
<Email>karaguzelibrahim@gmail.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>python-ecdsa</Name>
<Summary xml:lang="tr">Python için ECDSA Kriptografi Uygulaması</Summary>
<Description xml:lang="tr">Python için kolay kullanımlı, MIT lisanslı ECDSA kriptografi (Elliptic Curve Digital Signature Algorithm) modülü. Bu kitaplık ile hızlıca anahtar oluşturabilir (giriş ahahtarı ve doğrulama anahtarı), iletileri imzalayabilir ve imzalarınızı doğrulayabilirsiniz. Anahtar ile imzalar çok kısadır ve diğer protokollere bütünlleştirmek oldukça kolaydır.</Description>
</Source>
</PISI>
@@ -0,0 +1,13 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
def build():
pythonmodules.compile(pyVer="3")
def install():
pythonmodules.install(pyVer="3")
@@ -0,0 +1,59 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-ecdsa</Name>
<Homepage>https://github.com/warner/python-ecdsa</Homepage>
<Packager>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>ECDSA implementation for Python</Summary>
<Description>This is an easy-to-use implementation of ECDSA cryptography (Elliptic Curve Digital Signature Algorithm), implemented purely in Python, released under the MIT license. With this library, you can quickly create keypairs (signing key and verifying key), sign messages, and verify the signatures. The keys and signatures are very short, making them easy to handle and incorporate into other protocols.</Description>
<Archive sha1sum="b30cd3527393e262e0dd8c77423e4e8907c2936c" type="targz">https://github.com/warner/python-ecdsa/archive/python-ecdsa-0.15.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-ecdsa</Name>
<Summary>ECDSA module for python</Summary>
<RuntimeDependencies>
<Dependency>python3-six</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc/python3-ecdsa</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2020-01-23</Date>
<Version>0.15</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="2">
<Date>2019-11-21</Date>
<Version>0.14.1</Version>
<Comment>Ver. bump</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2016-04-01</Date>
<Version>0.13</Version>
<Comment>First Pisi Release, built with docker</Comment>
<Name>İbrahim KARAGÜZEL</Name>
<Email>karaguzelibrahim@gmail.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>python3-ecdsa</Name>
<Summary xml:lang="tr">Python3 için ECDSA Kriptografi Uygulaması</Summary>
<Description xml:lang="tr">Python3 için kolay kullanımlı, MIT lisanslı ECDSA kriptografi (Elliptic Curve Digital Signature Algorithm) modülü. Bu kitaplık ile hızlıca anahtar oluşturabilir (giriş ahahtarı ve doğrulama anahtarı), iletileri imzalayabilir ve imzalarınızı doğrulayabilirsiniz. Anahtar ile imzalar çok kısadır ve diğer protokollere bütünlleştirmek oldukça kolaydır.</Description>
</Source>
</PISI>