Skip to content

Commit b23b9a1

Browse files
committed
Add license and version
1 parent 323656b commit b23b9a1

File tree

7 files changed

+23
-11
lines changed

7 files changed

+23
-11
lines changed

.flutter-plugins

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# This is a generated file; do not edit or check into version control.
2+
flutter_key_store_cryptography=/root/Documents/personal/flutter_key_store_cryptography/

.flutter-plugins-dependencies

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"_info":"// This is a generated file; do not edit or check into version control.","dependencyGraph":[{"name":"flutter_key_store_cryptography","dependencies":[]}]}

LICENSE

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
TODO: Add your license here.
1+
Copyright 2020 Mahesh Haldar (http://www.maheshhaldar.com)
2+
3+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4+
5+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6+
7+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8+
9+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10+
11+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

lib/cipher.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import 'dart:async';
22

3-
import 'package:cipher/call_method_type_enum.dart';
4-
import 'package:cipher/cipher_utils.dart';
5-
import 'package:cipher/exception_message_constant.dart';
3+
import './call_method_type_enum.dart';
4+
import './cipher_utils.dart';
5+
import './exception_message_constant.dart';
66
import 'package:flutter/foundation.dart';
77
import 'package:flutter/services.dart';
88

pubspec.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
name: cipher
1+
name: flutter_key_store_cryptography
22
description: The keystore management and signing package
3-
version: 0.0.1
4-
author:
5-
homepage:
3+
version: 1.0.0
4+
homepage: http://www.maheshhaldar.com
65

76
environment:
87
sdk: ">=2.1.0 <3.0.0"

test/cipher_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import 'package:cipher/cipher.dart';
2-
import 'package:cipher/exception_message_constant.dart';
1+
import 'package:flutter_key_store_cryptography/cipher.dart';
2+
import 'package:flutter_key_store_cryptography/exception_message_constant.dart';
33
import 'package:flutter/services.dart';
44
import 'package:flutter_test/flutter_test.dart';
55

test/cipher_utils_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import 'package:cipher/cipher_utils.dart';
1+
import 'package:flutter_key_store_cryptography/cipher_utils.dart';
22
import 'package:flutter_test/flutter_test.dart';
33

44
void main() {

0 commit comments

Comments
 (0)