Skip to content

Commit 85cdd81

Browse files
authored
Merge pull request #4 from DevsDaddy/develop
Add UPM Support
2 parents cfdd9df + 5c20024 commit 85cdd81

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "com.devsdaddy.cryptolibrary",
3+
"displayName": "Unity Crypto Library",
4+
"version": "1.0.0",
5+
"unity": "2019.3",
6+
"description": "Unity Crypto Library is a set of free and open source cross-platform tools for using cryptographic and hash functions in your games. It also contains helper classes for handling files and web requests for your convenience.",
7+
"documentationUrl": "https://github.com/DevsDaddy/UnityCrypto/",
8+
"changelogUrl": "https://github.com/DevsDaddy/UnityCrypto/releases",
9+
"licensesUrl": "https://github.com/DevsDaddy/UnityCrypto/blob/main/LICENSE",
10+
"keywords": [
11+
"unity",
12+
"crypto",
13+
"library",
14+
"framework",
15+
"cryptography",
16+
"aes",
17+
"des",
18+
"sha",
19+
"md5"
20+
],
21+
"author": {
22+
"name": "DevsDaddy",
23+
"email": "blackfixltd@gmail.com",
24+
"url": "https://devsdaddy.hashnode.dev/"
25+
},
26+
"category": "Unity"
27+
}

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@ It also contains helper classes for handling files and web requests for your con
55

66
I periodically update possible algorithms based on the latest research in crypto-graphy.
77

8+
> **Note!** This library supports only Unity 2021+ versions
9+
810
## Get Started
911
**Unity Crypto Library** is designed for your application and games security and using only default API's like **System** and **UnityEngine**.
1012

1113
**Installation process:**
1214
- Download and import <a href="https://github.com/DevsDaddy/UnityCrypto/releases">latest release from this page</a>;
1315
- See <a href="#usage">usage examples below</a>;
1416

17+
**Or Using Unity Package Manager:**<br/>
18+
```https://github.com/DevsDaddy/UnityCrypto.git?path=/DevsDaddy/Shared/CryptoLibrary/```
19+
1520
## Usage
1621
**You can use a simple controller for fast encryption/decryption:**
1722
```csharp

0 commit comments

Comments
 (0)