https://github.com/mathieumack/mvvx.plugins.cryptotools
Plugin that integrate some tools used for cryptographic operations. Calculate file checksums, ... for MvvmCross
https://github.com/mathieumack/mvvx.plugins.cryptotools
Last synced: about 2 months ago
JSON representation
Plugin that integrate some tools used for cryptographic operations. Calculate file checksums, ... for MvvmCross
- Host: GitHub
- URL: https://github.com/mathieumack/mvvx.plugins.cryptotools
- Owner: mathieumack
- License: mit
- Created: 2017-06-14T18:57:07.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-30T21:41:54.000Z (almost 7 years ago)
- Last Synced: 2025-04-29T23:36:26.165Z (about 1 year ago)
- Language: C#
- Size: 478 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MvvX.Plugins.CryptoTools
TODO : Add description
## Build
[](https://ci.appveyor.com/project/mathieumack/mvvx-plugins-couchbaselite/branch/master)
## Nuget
Project | Nuget
[](https://nuget.org/packages/MvvX.Plugins.CryptoTools)
### Nuget Installation
Install [MvvX.Plugins.CryptoTools](https://www.nuget.org/packages/MvvX.Plugins.CryptoTools/) from nuget.
**Important:** You will need to add the nuget package to **both** your *PCL project* and your *platform-dependent project*.
## Please Contribute!
This is an open source project that welcomes contributions/suggestions/bug reports from those who use it.
If you have any ideas on how to improve the library, please [post an issue here on github](https://github.com/mathieumack/MvvX.Plugins.CryptoTools/issues). Please check out the [How to Contribute](https://github.com/mathieumack/MvvX.Plugins.CryptoTools/wiki/How-to-Contribute).
# Example
## API
The API of ICryptoTools is very easy to understand and to use.
```c#
public interface ICryptoTools
{
///
/// Calculate the checksum of a file
///
/// Full file path
/// Type of hash
///
///
///
string CalculateFileCheckSum(string filePath, HashType hashType);
}
```
To be complete...