Skip to content

Commit

Permalink
Merge pull request #8 from rbonestell/development
Browse files Browse the repository at this point in the history
Release v1.1.0
  • Loading branch information
rbonestell authored May 2, 2019
2 parents 492a22a + 58af741 commit 55370a4
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 11 deletions.
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Bug Report
about: Create a bug report to help us improve DUKPTCore
title: "[BUG]"
labels: bug
assignees: ''

---

**Description**
A clear and concise description of what the bug is.

**Steps to Reproduce**
Steps to reproduce the behavior.

**Expected Behavior**
A clear and concise description of what you expected to happen.

**Environment (please include the following information)**
- OS: [e.g. macOS]
- Framework [e.g. .NET Core v2.2]
- DUKPTCore Version [e.g. 1.0.1]

**Additional Information**
Add any other context about the problem here.
4 changes: 2 additions & 2 deletions DUKPTCore.sln
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Global
{6EA6CBD9-F526-451D-AF70-44E6DBCF09CA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
description = A .NET Core implementation of TDES DUKPT, both PIN and Data variants.
version = 1.0.0
description = A .NET Standard implementation of TDES DUKPT, both PIN and Data variants.
version = 1.1.0
Policies = $0
$0.DotNetNamingPolicy = $1
$1.DirectoryNamespaceAssociation = PrefixedHierarchical
Expand Down
10 changes: 5 additions & 5 deletions DUKPTCore/DUKPTCore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<ReleaseVersion>1.0.1</ReleaseVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<ReleaseVersion>1.1.0</ReleaseVersion>
<Authors>rbonestell</Authors>
<PackageLicenseUrl>https://github.com/rbonestell/DUKPTCore/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/rbonestell/DUKPTCore</PackageProjectUrl>
Expand All @@ -10,10 +10,10 @@
<RepositoryUrl>https://github.com/rbonestell/DUKPTCore</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageId>DUKPTCore</PackageId>
<PackageVersion>1.0.1</PackageVersion>
<Description>A .NET Core implementation of TDES DUKPT, both PIN and Data variants.</Description>
<PackageVersion>1.1.0</PackageVersion>
<Description>A .NET Standard implementation of TDES DUKPT, both PIN and Data variants.</Description>
<Owners>rbonestell</Owners>
<PackageTags>DUKPT TDES 3DES ANSI ANS x9.24 Core</PackageTags>
<PackageTags>DUKPT TDES 3DES ANSI ANS x9.24 Core Standard</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType></DebugType>
Expand Down
2 changes: 1 addition & 1 deletion DUKPTCoreTests/DUKPTCoreTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netcoreapp2.1</TargetFramework>

<IsPackable>false</IsPackable>
<ReleaseVersion>1.0.1</ReleaseVersion>
<ReleaseVersion>1.1.0</ReleaseVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# DUKPTCore [![Code Quality](https://img.shields.io/codacy/grade/41d82bb687df4273adf3698f8c86deca.svg)](https://www.codacy.com/app/rbonestell/DUKPTCore?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=rbonestell/DUKPTCore&amp;utm_campaign=Badge_Grade) [![Build Status](https://img.shields.io/appveyor/ci/rbonestell/DUKPTCore.svg)](https://ci.appveyor.com/project/rbonestell/dukptcore/branch/development) [![NuGet](https://img.shields.io/nuget/v/DUKPTCore.svg)](https://www.nuget.org/packages/DUKPTCore/) [![NuGet Downloads](https://img.shields.io/nuget/dt/DUKPTCore.svg)](https://www.nuget.org/packages/DUKPTCore/)

A .NET Core implementation of TDES DUKPT, both PIN and Data variants.
A .NET Standard implementation of TDES DUKPT, both PIN and Data variants.

### About DUKPTCore
You'll find DUKPTCore quite useful if you're working on financial services applications with the need to decrypt data using TDES (3DES, TDEA, triple-DES, etc) DUKPT (derived unique key per transaction), such as PIN or credit card account data.
You'll find this library useful if you're working on financial services applications with the need to decrypt data using TDES (3DES, TDEA, triple-DES, etc) DUKPT (derived unique key per transaction), such as PIN or credit card account data.

DUKPTCore was adapted from [sgbj's Dukpt.NET project](https://github.com/sgbj/Dukpt.NET) and ported to .NET Core.
DUKPTCore was adapted from [sgbj's Dukpt.NET project](https://github.com/sgbj/Dukpt.NET) and ported to .NET Standard.

### Examples
Encrypting data:
Expand Down

0 comments on commit 55370a4

Please sign in to comment.