12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" ?>
- <!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
- <PISI>
- <Source>
- <Name>python-ecdsa</Name>
- <Homepage>https://github.com/warner/python-ecdsa</Homepage>
- <Packager>
- <Name>İbrahim KARAGÜZEL</Name>
- <Email>karaguzelibrahim@gmail.com</Email>
- </Packager>
- <License>MIT</License>
- <PartOf>programming.language.python</PartOf>
- <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="89e198ddd4c09d0bb9184bf77bbf2b3b604440c7" type="targz">https://github.com/warner/python-ecdsa/archive/python-ecdsa-0.13.tar.gz</Archive>
- <BuildDependencies>
- <Dependency>python3-setuptools</Dependency>
- <Dependency>python-setuptools</Dependency>
- <Dependency>python3-devel</Dependency>
- <Dependency>python-devel</Dependency>
- </BuildDependencies>
- </Source>
- <Package>
- <Name>python-ecdsa</Name>
- <Summary>ECDSA module for python</Summary>
- <RuntimeDependencies>
- <Dependency>python</Dependency>
- </RuntimeDependencies>
- <Files>
- <Path fileType="library">/usr/lib/python2*</Path>
- <Path fileType="doc">/usr/share/doc/python-ecdsa</Path>
- </Files>
- </Package>
-
- <Package>
- <Name>python3-ecdsa</Name>
- <Summary>ECDSA module for python3</Summary>
- <RuntimeDependencies>
- <Dependency>python3</Dependency>
- </RuntimeDependencies>
- <Files>
- <Path fileType="library">/usr/lib/python3*</Path>
- </Files>
- </Package>
- <History>
- <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>
|