An open API service indexing awesome lists of open source software.

https://github.com/devmnj/secret-file-generator--csharp

This is License file generator project for developers. Users can create encrypted file with customizable field with value. The content of the file will be serialized and encrypted, so unreadable for humans. The file can be only deserialized with corresponding classes.
https://github.com/devmnj/secret-file-generator--csharp

encryption-decryption license-management licese lisence wpf-application

Last synced: about 1 year ago
JSON representation

This is License file generator project for developers. Users can create encrypted file with customizable field with value. The content of the file will be serialized and encrypted, so unreadable for humans. The file can be only deserialized with corresponding classes.

Awesome Lists containing this project

README

          

# Licence-Secret-File-Generator
This is sub project which is writtent in C#, inorder generate sercret encrypted file , where developer can keep
cutomizable filds with valuse such as licence key, expiry date etc

## Classes
The project utilizing Package class for creating the package and two classes for Creating and Encrypting files namely,
1. Binary SerialiZation
2. Serialize Helper
# Methods
You can use ``Serialize and Deserialize`` methods to create and open files.
# How to Read file information in C#.
Include the c# classes in your projects and Deserialize the file as follows
```
var plist = SerializeHelper.DeserialilZe>(licenceFile.lic);
var version = (from p in plist.AsEnumerable() where p.PName == "VERSION" select p.Pvalue).ElementAt(0);
```