-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
24 lines (21 loc) · 1.01 KB
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.pyaes"
name="PyAES"
version="1.6.1"
provider-name="ricmoo">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
</requires>
<extension point="xbmc.python.module" library="lib" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Pure-Python Implementation of the AES block-cipher and common modes of operation</summary>
<description lang="en_GB">A pure-Python implementation of the AES (FIPS-197) block-cipher algorithm and common modes of operation (CBC, CFB, CTR, ECB, OFB) with no dependencies beyond standard Python libraries. See README.md for API reference and details.</description>
<platform>all</platform>
<license>MIT</license>
<website>https://github.com/ricmoo/pyaes</website>
<source>https://github.com/ricmoo/pyaes</source>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>