From 6743079a72aa735d6c1fce82d5a0af718e1e019a Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Mon, 1 Jan 2018 13:23:40 +0100 Subject: [PATCH 01/27] Fix Appveyor Android SDK installation (#63) Switch Android SDK to the latest before build and use VS2017 image for all builds (cherry picked from commit b9c5936d9a0531d7b9eac7309f418737a103597d) --- appveyor.yml | 7 +++--- build/appveyor-install-android-sdk.ps1 | 30 -------------------------- build/appveyor-switch-android-sdk.ps1 | 5 +++++ 3 files changed, 8 insertions(+), 34 deletions(-) delete mode 100644 build/appveyor-install-android-sdk.ps1 create mode 100644 build/appveyor-switch-android-sdk.ps1 diff --git a/appveyor.yml b/appveyor.yml index d9bb3c98..8e0b3eb1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,5 @@ version: 4.0.0-{build} -image: Visual Studio 2015 +image: Visual Studio 2017 branches: only: - master @@ -10,12 +10,11 @@ environment: - Platform: net40 - Platform: net45 - Platform: sl5 - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - Platform: netstandard1.3 + - Platform: netstandard1.3 - Platform: monoandroid2.3 - Platform: xamarinios1.0 install: -- cmd: IF "%Platform%"=="monoandroid2.3" (powershell -File ./build/appveyor-install-android-sdk.ps1) +- cmd: IF "%Platform%"=="monoandroid2.3" (powershell -File ./build/appveyor-switch-android-sdk.ps1) build_script: - cmd: IF "%Platform%"=="net20" (cd build && build-net20.bat --with-tests) - cmd: IF "%Platform%"=="net40" (cd build && build-net40.bat --with-tests) diff --git a/build/appveyor-install-android-sdk.ps1 b/build/appveyor-install-android-sdk.ps1 deleted file mode 100644 index 3e10cceb..00000000 --- a/build/appveyor-install-android-sdk.ps1 +++ /dev/null @@ -1,30 +0,0 @@ -$AndroidToolPath = "${env:ProgramFiles(x86)}\Android\android-sdk\tools\android" - -Function Get-AndroidSDKs() { - $output = & $AndroidToolPath list sdk --all - $sdks = $output |% { - if ($_ -match '(?\d+)- (?.+), revision (?[\d\.]+)') { - $sdk = New-Object PSObject - Add-Member -InputObject $sdk -MemberType NoteProperty -Name Index -Value $Matches.index - Add-Member -InputObject $sdk -MemberType NoteProperty -Name Name -Value $Matches.sdk - Add-Member -InputObject $sdk -MemberType NoteProperty -Name Revision -Value $Matches.revision - $sdk - } - } - $sdks -} - -Function Install-AndroidSDK() { - [CmdletBinding()] - Param( - [Parameter(Mandatory=$true, Position=0)] - [PSObject[]]$sdks - ) - - $sdkIndexes = $sdks |% { $_.Index } - $sdkIndexArgument = [string]::Join(',', $sdkIndexes) - Echo 'y' | & $AndroidToolPath update sdk -u -a -t $sdkIndexArgument -} - -$sdks = Get-AndroidSDKs |? { $_.name -like 'sdk platform*API 10*' -or $_.name -like 'google apis*api 10' } -Install-AndroidSDK -sdks $sdks \ No newline at end of file diff --git a/build/appveyor-switch-android-sdk.ps1 b/build/appveyor-switch-android-sdk.ps1 new file mode 100644 index 00000000..5c963633 --- /dev/null +++ b/build/appveyor-switch-android-sdk.ps1 @@ -0,0 +1,5 @@ +$file = 'src\Pkcs11Interop.Android\Pkcs11Interop.Android\Pkcs11Interop.Android.csproj' +$s1 = 'False' +$s2 = 'True' + +(Get-Content $file).replace($s1, $s2) | Set-Content $file From 69b4066dafba501a12222c9de40b8460e1ea2489 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 7 Jan 2018 11:43:25 +0100 Subject: [PATCH 02/27] New project icon Recoloured Pkcs11Admin icon contributed by Tomas Haluska (cherry picked from commit 0dba279c8a9de765f28620cc01cc667ce9062ed4) --- doc/images/Pkcs11Interop.svg | 104 +++++++++++++---------------------- 1 file changed, 38 insertions(+), 66 deletions(-) diff --git a/doc/images/Pkcs11Interop.svg b/doc/images/Pkcs11Interop.svg index 8b19e830..4b26d122 100644 --- a/doc/images/Pkcs11Interop.svg +++ b/doc/images/Pkcs11Interop.svg @@ -9,15 +9,15 @@ xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="168.01155mm" - height="236.52222mm" - viewBox="0 0 595.31652 838.07084" - id="svg4250" + width="472.33713" + height="471.88602" + viewBox="0 0 472.33714 471.88602" + id="svg2" version="1.1" inkscape:version="0.91 r13725" - sodipodi:docname="Pkcs11Interop.svg"> + sodipodi:docname="Pkcs11Admin.svg"> + id="defs4" /> + inkscape:window-maximized="1" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" /> + id="metadata7"> @@ -56,62 +58,32 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" - transform="translate(-79.484657,-107.61249)"> + transform="translate(-63.831442,-516.41918)"> - - + id="g4142"> + - - - - - - + From cf2a418729c7f0b017019cbcd971475146a1208c Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 22 Jan 2019 21:24:56 +0100 Subject: [PATCH 03/27] Unify assembly naming in 4.x branch (#100) * Renamed Pkcs11Interop.Android project * Renamed Pkcs11Interop.iOS project * Renamed Pkcs11Interop.NetStandard project * Renamed Pkcs11Interop.Silverlight project --- appveyor.yml | 1 + build/appveyor-switch-android-sdk.ps1 | 2 +- build/build-monoandroid2.3.bat | 10 +++++----- build/build-netstandard1.3.bat | 8 ++++---- build/build-sl5.bat | 8 ++++---- build/build-xamarinios1.0.bat | 10 +++++----- build/create-nuget.bat | 16 ++++++++-------- build/sign-all.bat | 16 ++++++++-------- .../Pkcs11Interop.Android.Tests.csproj | 6 +++--- .../Pkcs11Interop.Android.sln | 2 +- .../Pkcs11Interop.csproj} | 6 +++--- .../Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop.DotNetCore.Tests.csproj | 2 +- .../Pkcs11Interop.NetStandard.sln | 2 +- .../Pkcs11Interop.csproj} | 0 .../Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop.Silverlight.Tests.csproj | 4 ++-- .../Pkcs11Interop.Silverlight.sln | 2 +- .../Pkcs11Interop.csproj} | 6 +++--- .../Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop.iOS.Tests.csproj | 4 ++-- src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.sln | 2 +- .../Pkcs11Interop.csproj} | 6 +++--- .../Properties/AssemblyInfo.cs | 4 ++-- 24 files changed, 65 insertions(+), 64 deletions(-) rename src/Pkcs11Interop.Android/{Pkcs11Interop.Android/Pkcs11Interop.Android.csproj => Pkcs11Interop/Pkcs11Interop.csproj} (99%) rename src/Pkcs11Interop.Android/{Pkcs11Interop.Android => Pkcs11Interop}/Properties/AssemblyInfo.cs (87%) rename src/Pkcs11Interop.NetStandard/{Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.csproj => Pkcs11Interop/Pkcs11Interop.csproj} (100%) rename src/Pkcs11Interop.NetStandard/{Pkcs11Interop.NetStandard => Pkcs11Interop}/Properties/AssemblyInfo.cs (81%) rename src/Pkcs11Interop.Silverlight/{Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.csproj => Pkcs11Interop/Pkcs11Interop.csproj} (99%) rename src/Pkcs11Interop.Silverlight/{Pkcs11Interop.Silverlight => Pkcs11Interop}/Properties/AssemblyInfo.cs (86%) rename src/Pkcs11Interop.iOS/{Pkcs11Interop.iOS/Pkcs11Interop.iOS.csproj => Pkcs11Interop/Pkcs11Interop.csproj} (99%) rename src/Pkcs11Interop.iOS/{Pkcs11Interop.iOS => Pkcs11Interop}/Properties/AssemblyInfo.cs (87%) diff --git a/appveyor.yml b/appveyor.yml index 8e0b3eb1..7fe7fba5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,6 +3,7 @@ image: Visual Studio 2017 branches: only: - master + - 4.x-maintenance skip_tags: true environment: matrix: diff --git a/build/appveyor-switch-android-sdk.ps1 b/build/appveyor-switch-android-sdk.ps1 index 5c963633..de6c3bc1 100644 --- a/build/appveyor-switch-android-sdk.ps1 +++ b/build/appveyor-switch-android-sdk.ps1 @@ -1,4 +1,4 @@ -$file = 'src\Pkcs11Interop.Android\Pkcs11Interop.Android\Pkcs11Interop.Android.csproj' +$file = 'src\Pkcs11Interop.Android\Pkcs11Interop\Pkcs11Interop.csproj' $s1 = 'False' $s2 = 'True' diff --git a/build/build-monoandroid2.3.bat b/build/build-monoandroid2.3.bat index 7b197c09..d26d4728 100644 --- a/build/build-monoandroid2.3.bat +++ b/build/build-monoandroid2.3.bat @@ -27,19 +27,19 @@ msbuild ..\src\Pkcs11Interop.Android\Pkcs11Interop.Android.sln ^ /p:Configuration=Release /p:Platform="Any CPU" /target:Clean || goto :error @if "%arg1%"=="--with-tests" ( - @rem Build both Pkcs11Interop.Android and Pkcs11Interop.Android.Tests projects via solution + @rem Build both Pkcs11Interop and Pkcs11Interop.Android.Tests projects via solution msbuild ..\src\Pkcs11Interop.Android\Pkcs11Interop.Android.sln ^ /p:Configuration=Release /p:Platform="Any CPU" /target:Build || goto :error ) else ( - @rem Build only Pkcs11Interop.Android project - msbuild ..\src\Pkcs11Interop.Android\Pkcs11Interop.Android\Pkcs11Interop.Android.csproj ^ + @rem Build only Pkcs11Interop project + msbuild ..\src\Pkcs11Interop.Android\Pkcs11Interop\Pkcs11Interop.csproj ^ /p:Configuration=Release /p:Platform=AnyCPU /target:Build || goto :error ) @rem Copy result to output directory mkdir monoandroid2.3 || goto :error -copy ..\src\Pkcs11Interop.Android\Pkcs11Interop.Android\bin\Release\Pkcs11Interop.Android.dll monoandroid2.3 || goto :error -copy ..\src\Pkcs11Interop.Android\Pkcs11Interop.Android\bin\Release\Pkcs11Interop.Android.xml monoandroid2.3 || goto :error +copy ..\src\Pkcs11Interop.Android\Pkcs11Interop\bin\Release\Pkcs11Interop.dll monoandroid2.3 || goto :error +copy ..\src\Pkcs11Interop.Android\Pkcs11Interop\bin\Release\Pkcs11Interop.xml monoandroid2.3 || goto :error @echo *** BUILD MONOANDROID2.3 SUCCESSFUL *** @endlocal diff --git a/build/build-netstandard1.3.bat b/build/build-netstandard1.3.bat index 7a2b4f2e..cdba3866 100644 --- a/build/build-netstandard1.3.bat +++ b/build/build-netstandard1.3.bat @@ -26,8 +26,8 @@ msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ /p:Configuration=Release /p:Platform="Any CPU" /target:Restore || goto :error -@rem Build Pkcs11Interop.NetStandard project -msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.csproj ^ +@rem Build Pkcs11Interop project +msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Pkcs11Interop.csproj ^ /p:Configuration=Release /p:Platform=AnyCPU /target:Build || goto :error @if "%arg1%"=="--with-tests" ( @@ -38,8 +38,8 @@ msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard\Pkcs11Interop @rem Copy result to output directory mkdir netstandard1.3 || goto :error -copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard\bin\Release\Pkcs11Interop.NetStandard.dll netstandard1.3 || goto :error -copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard\bin\Release\Pkcs11Interop.NetStandard.xml netstandard1.3 || goto :error +copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\Pkcs11Interop.dll netstandard1.3 || goto :error +copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\Pkcs11Interop.xml netstandard1.3 || goto :error @echo *** BUILD NETSTANDARD1.3 SUCCESSFUL *** @endlocal diff --git a/build/build-sl5.bat b/build/build-sl5.bat index 5dfd5c7a..e806c1ec 100644 --- a/build/build-sl5.bat +++ b/build/build-sl5.bat @@ -29,8 +29,8 @@ rmdir /S /Q sl5 msbuild ..\src\Pkcs11Interop.Silverlight\Pkcs11Interop.Silverlight.sln ^ /p:Configuration=Release /p:Platform="Any CPU" /target:Clean || goto :error -@rem Build Pkcs11Interop.Silverlight project -msbuild ..\src\Pkcs11Interop.Silverlight\Pkcs11Interop.Silverlight\Pkcs11Interop.Silverlight.csproj ^ +@rem Build Pkcs11Interop project +msbuild ..\src\Pkcs11Interop.Silverlight\Pkcs11Interop\Pkcs11Interop.csproj ^ /p:Configuration=Release /p:Platform=AnyCPU /target:Build || goto :error @if "%arg1%"=="--with-tests" ( @@ -41,8 +41,8 @@ msbuild ..\src\Pkcs11Interop.Silverlight\Pkcs11Interop.Silverlight\Pkcs11Interop @rem Copy result to output directory mkdir sl5 || goto :error -copy ..\src\Pkcs11Interop.Silverlight\Pkcs11Interop.Silverlight\bin\Release\Pkcs11Interop.Silverlight.dll sl5 || goto :error -copy ..\src\Pkcs11Interop.Silverlight\Pkcs11Interop.Silverlight\bin\Release\Pkcs11Interop.Silverlight.xml sl5 || goto :error +copy ..\src\Pkcs11Interop.Silverlight\Pkcs11Interop\bin\Release\Pkcs11Interop.dll sl5 || goto :error +copy ..\src\Pkcs11Interop.Silverlight\Pkcs11Interop\bin\Release\Pkcs11Interop.xml sl5 || goto :error @echo *** BUILD SL5 SUCCESSFUL *** @endlocal diff --git a/build/build-xamarinios1.0.bat b/build/build-xamarinios1.0.bat index 0f48d8c6..b1c59903 100644 --- a/build/build-xamarinios1.0.bat +++ b/build/build-xamarinios1.0.bat @@ -27,19 +27,19 @@ msbuild ..\src\Pkcs11Interop.iOS\Pkcs11Interop.iOS.sln ^ /p:Configuration=Release /p:Platform="Any CPU" /target:Clean || goto :error @if "%arg1%"=="--with-tests" ( - @rem Build both Pkcs11Interop.iOS and Pkcs11Interop.iOS.Tests projects via solution + @rem Build both Pkcs11Interop and Pkcs11Interop.iOS.Tests projects via solution msbuild ..\src\Pkcs11Interop.iOS\Pkcs11Interop.iOS.sln ^ /p:Configuration=Release /p:Platform="Any CPU" /target:Build || goto :error ) else ( - @rem Build only Pkcs11Interop.iOS project - msbuild ..\src\Pkcs11Interop.iOS\Pkcs11Interop.iOS\Pkcs11Interop.iOS.csproj ^ + @rem Build only Pkcs11Interop project + msbuild ..\src\Pkcs11Interop.iOS\Pkcs11Interop\Pkcs11Interop.csproj ^ /p:Configuration=Release /p:Platform=AnyCPU /target:Build || goto :error ) @rem Copy result to output directory mkdir xamarinios1.0 || goto :error -copy ..\src\Pkcs11Interop.iOS\Pkcs11Interop.iOS\bin\Release\Pkcs11Interop.iOS.dll xamarinios1.0 || goto :error -copy ..\src\Pkcs11Interop.iOS\Pkcs11Interop.iOS\bin\Release\Pkcs11Interop.iOS.xml xamarinios1.0 || goto :error +copy ..\src\Pkcs11Interop.iOS\Pkcs11Interop\bin\Release\Pkcs11Interop.dll xamarinios1.0 || goto :error +copy ..\src\Pkcs11Interop.iOS\Pkcs11Interop\bin\Release\Pkcs11Interop.xml xamarinios1.0 || goto :error @echo *** BUILD XAMARINIOS1.0 SUCCESSFUL *** @endlocal diff --git a/build/create-nuget.bat b/build/create-nuget.bat index 63535630..6dd3a213 100644 --- a/build/create-nuget.bat +++ b/build/create-nuget.bat @@ -21,14 +21,14 @@ copy net40\Pkcs11Interop.dll nuget\lib\net40 || goto :error copy net40\Pkcs11Interop.xml nuget\lib\net40 || goto :error copy net45\Pkcs11Interop.dll nuget\lib\net45 || goto :error copy net45\Pkcs11Interop.xml nuget\lib\net45 || goto :error -copy sl5\Pkcs11Interop.Silverlight.dll nuget\lib\sl5 || goto :error -copy sl5\Pkcs11Interop.Silverlight.xml nuget\lib\sl5 || goto :error -copy netstandard1.3\Pkcs11Interop.NetStandard.dll nuget\lib\netstandard1.3 || goto :error -copy netstandard1.3\Pkcs11Interop.NetStandard.xml nuget\lib\netstandard1.3 || goto :error -copy monoandroid2.3\Pkcs11Interop.Android.dll nuget\lib\monoandroid2.3 || goto :error -copy monoandroid2.3\Pkcs11Interop.Android.xml nuget\lib\monoandroid2.3 || goto :error -copy xamarinios1.0\Pkcs11Interop.iOS.dll nuget\lib\xamarinios1.0 || goto :error -copy xamarinios1.0\Pkcs11Interop.iOS.xml nuget\lib\xamarinios1.0 || goto :error +copy sl5\Pkcs11Interop.dll nuget\lib\sl5 || goto :error +copy sl5\Pkcs11Interop.xml nuget\lib\sl5 || goto :error +copy netstandard1.3\Pkcs11Interop.dll nuget\lib\netstandard1.3 || goto :error +copy netstandard1.3\Pkcs11Interop.xml nuget\lib\netstandard1.3 || goto :error +copy monoandroid2.3\Pkcs11Interop.dll nuget\lib\monoandroid2.3 || goto :error +copy monoandroid2.3\Pkcs11Interop.xml nuget\lib\monoandroid2.3 || goto :error +copy xamarinios1.0\Pkcs11Interop.dll nuget\lib\xamarinios1.0 || goto :error +copy xamarinios1.0\Pkcs11Interop.xml nuget\lib\xamarinios1.0 || goto :error @rem Copy license to output directory copy ..\src\Pkcs11Interop\Pkcs11Interop\LICENSE.txt nuget || goto :error diff --git a/build/sign-all.bat b/build/sign-all.bat index 1406bf2b..027e5bb2 100644 --- a/build/sign-all.bat +++ b/build/sign-all.bat @@ -13,20 +13,20 @@ set LIBURL=https://www.pkcs11interop.net/ net20\Pkcs11Interop.dll ^ net40\Pkcs11Interop.dll ^ net45\Pkcs11Interop.dll ^ -sl5\Pkcs11Interop.Silverlight.dll ^ -netstandard1.3\Pkcs11Interop.NetStandard.dll ^ -monoandroid2.3\Pkcs11Interop.Android.dll ^ -xamarinios1.0\Pkcs11Interop.iOS.dll || goto :error +sl5\Pkcs11Interop.dll ^ +netstandard1.3\Pkcs11Interop.dll ^ +monoandroid2.3\Pkcs11Interop.dll ^ +xamarinios1.0\Pkcs11Interop.dll || goto :error @rem Sign all assemblies using SHA256withRSA algorithm %SIGNTOOL% sign /sha1 %CERTHASH% /as /fd sha256 /tr %TSAURL% /td sha256 /d %LIBNAME% /du %LIBURL% ^ net20\Pkcs11Interop.dll ^ net40\Pkcs11Interop.dll ^ net45\Pkcs11Interop.dll ^ -sl5\Pkcs11Interop.Silverlight.dll ^ -netstandard1.3\Pkcs11Interop.NetStandard.dll ^ -monoandroid2.3\Pkcs11Interop.Android.dll ^ -xamarinios1.0\Pkcs11Interop.iOS.dll || goto :error +sl5\Pkcs11Interop.dll ^ +netstandard1.3\Pkcs11Interop.dll ^ +monoandroid2.3\Pkcs11Interop.dll ^ +xamarinios1.0\Pkcs11Interop.dll || goto :error @echo *** SIGNING SUCCESSFUL *** @endlocal diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj index 8c99b4d1..3bff69cc 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj @@ -15,7 +15,7 @@ true Resources\Resource.Designer.cs Off - True + False v6.0 Properties\AndroidManifest.xml @@ -897,9 +897,9 @@ - + {e70d0cee-348c-4311-a087-753871275eb9} - Pkcs11Interop.Android + Pkcs11Interop diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.sln b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.sln index c594f1b9..154e3ebb 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.sln +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop.Android", "Pkcs11Interop.Android\Pkcs11Interop.Android.csproj", "{E70D0CEE-348C-4311-A087-753871275EB9}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop", "Pkcs11Interop\Pkcs11Interop.csproj", "{E70D0CEE-348C-4311-A087-753871275EB9}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop.Android.Tests", "Pkcs11Interop.Android.Tests\Pkcs11Interop.Android.Tests.csproj", "{B23402D6-483A-44A4-8D6A-1693AD006812}" EndProject diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android/Pkcs11Interop.Android.csproj b/src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj similarity index 99% rename from src/Pkcs11Interop.Android/Pkcs11Interop.Android/Pkcs11Interop.Android.csproj rename to src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj index 7c17ebee..24513900 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android/Pkcs11Interop.Android.csproj +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj @@ -10,7 +10,7 @@ Library Properties Net.Pkcs11Interop - Pkcs11Interop.Android + Pkcs11Interop 512 Resources\Resource.Designer.cs Off @@ -25,7 +25,7 @@ DEBUG;TRACE prompt 4 - bin\Debug\Pkcs11Interop.Android.xml + bin\Debug\Pkcs11Interop.xml pdbonly @@ -34,7 +34,7 @@ TRACE prompt 4 - bin\Release\Pkcs11Interop.Android.xml + bin\Release\Pkcs11Interop.xml diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs similarity index 87% rename from src/Pkcs11Interop.Android/Pkcs11Interop.Android/Properties/AssemblyInfo.cs rename to src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs index 10c4de28..faded8b4 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -3,8 +3,8 @@ using System.Runtime.InteropServices; using Android.App; -[assembly: AssemblyTitle("Pkcs11Interop.Android")] -[assembly: AssemblyDescription("Managed .NET wrapper for unmanaged PKCS#11 libraries")] +[assembly: AssemblyTitle("Pkcs11Interop")] +[assembly: AssemblyDescription("Managed .NET wrapper for unmanaged PKCS#11 libraries (Android version)")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj index fe00d199..e4eca769 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj @@ -19,7 +19,7 @@ - + diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.sln b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.sln index 5c1e371d..389744f2 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.sln +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.26430.12 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Pkcs11Interop.NetStandard", "Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.csproj", "{C60DA2E2-69E7-4B63-A77B-EFBBA1579C9D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Pkcs11Interop", "Pkcs11Interop\Pkcs11Interop.csproj", "{C60DA2E2-69E7-4B63-A77B-EFBBA1579C9D}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Pkcs11Interop.DotNetCore.Tests", "Pkcs11Interop.DotNetCore.Tests\Pkcs11Interop.DotNetCore.Tests.csproj", "{77010EA5-A254-4158-BE87-19964350FFD8}" EndProject diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.csproj b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj similarity index 100% rename from src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.csproj rename to src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs similarity index 81% rename from src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Properties/AssemblyInfo.cs rename to src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs index a5e982ac..4e4c7e14 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -2,8 +2,8 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("Pkcs11Interop.NetStandard")] -[assembly: AssemblyDescription("Managed .NET wrapper for unmanaged PKCS#11 libraries")] +[assembly: AssemblyTitle("Pkcs11Interop")] +[assembly: AssemblyDescription("Managed .NET wrapper for unmanaged PKCS#11 libraries (NetStandard version)")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Pkcs11Interop.Silverlight.Tests.csproj b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Pkcs11Interop.Silverlight.Tests.csproj index 029724e3..37b8e5cc 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Pkcs11Interop.Silverlight.Tests.csproj +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Pkcs11Interop.Silverlight.Tests.csproj @@ -946,9 +946,9 @@ - + {e4b6e4b2-8248-4f9f-8e6f-71c487d9c050} - Pkcs11Interop.Silverlight + Pkcs11Interop diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.sln b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.sln index 85b47eac..d60c0d6f 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.sln +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop.Silverlight", "Pkcs11Interop.Silverlight\Pkcs11Interop.Silverlight.csproj", "{E4B6E4B2-8248-4F9F-8E6F-71C487D9C050}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop", "Pkcs11Interop\Pkcs11Interop.csproj", "{E4B6E4B2-8248-4F9F-8E6F-71C487D9C050}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop.Silverlight.Tests", "Pkcs11Interop.Silverlight.Tests\Pkcs11Interop.Silverlight.Tests.csproj", "{65E0C9A3-964C-4442-B695-2A18CEFFC3F9}" EndProject diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.csproj b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Pkcs11Interop.csproj similarity index 99% rename from src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.csproj rename to src/Pkcs11Interop.Silverlight/Pkcs11Interop/Pkcs11Interop.csproj index 3f0c7a74..76922b3e 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.csproj +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Pkcs11Interop.csproj @@ -10,7 +10,7 @@ Library Properties Net.Pkcs11Interop - Pkcs11Interop.Silverlight + Pkcs11Interop Silverlight v5.0 $(TargetFrameworkVersion) @@ -34,7 +34,7 @@ true prompt 4 - Bin\Debug\Pkcs11Interop.Silverlight.xml + Bin\Debug\Pkcs11Interop.xml pdbonly @@ -45,7 +45,7 @@ true prompt 4 - Bin\Release\Pkcs11Interop.Silverlight.xml + Bin\Release\Pkcs11Interop.xml true diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs similarity index 86% rename from src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight/Properties/AssemblyInfo.cs rename to src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs index 21be3e5e..ee3a21a4 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -2,8 +2,8 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("Pkcs11Interop.Silverlight")] -[assembly: AssemblyDescription("Managed .NET wrapper for unmanaged PKCS#11 libraries")] +[assembly: AssemblyTitle("Pkcs11Interop")] +[assembly: AssemblyDescription("Managed .NET wrapper for unmanaged PKCS#11 libraries (Silverlight version)")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Pkcs11Interop.iOS.Tests.csproj b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Pkcs11Interop.iOS.Tests.csproj index cfc07f33..4e007bfa 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Pkcs11Interop.iOS.Tests.csproj +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Pkcs11Interop.iOS.Tests.csproj @@ -948,9 +948,9 @@ - + {1DF7AFD7-8498-41C2-B83A-161E2D2A01E9} - Pkcs11Interop.iOS + Pkcs11Interop diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.sln b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.sln index 5fe797ef..32375180 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.sln +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.sln @@ -1,7 +1,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop.iOS", "Pkcs11Interop.iOS\Pkcs11Interop.iOS.csproj", "{1DF7AFD7-8498-41C2-B83A-161E2D2A01E9}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop", "Pkcs11Interop\Pkcs11Interop.csproj", "{1DF7AFD7-8498-41C2-B83A-161E2D2A01E9}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pkcs11Interop.iOS.Tests", "Pkcs11Interop.iOS.Tests\Pkcs11Interop.iOS.Tests.csproj", "{EDFECDDE-5DF5-423C-925B-2064437275D3}" EndProject diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS/Pkcs11Interop.iOS.csproj b/src/Pkcs11Interop.iOS/Pkcs11Interop/Pkcs11Interop.csproj similarity index 99% rename from src/Pkcs11Interop.iOS/Pkcs11Interop.iOS/Pkcs11Interop.iOS.csproj rename to src/Pkcs11Interop.iOS/Pkcs11Interop/Pkcs11Interop.csproj index d4c706e4..7e1666a5 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS/Pkcs11Interop.iOS.csproj +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop/Pkcs11Interop.csproj @@ -7,7 +7,7 @@ {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} Library Net.Pkcs11Interop - Pkcs11Interop.iOS + Pkcs11Interop Resources @@ -21,7 +21,7 @@ false true true - bin\Debug\Pkcs11Interop.iOS.xml + bin\Debug\Pkcs11Interop.xml true @@ -31,7 +31,7 @@ false true true - bin\Release\Pkcs11Interop.iOS.xml + bin\Release\Pkcs11Interop.xml diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs similarity index 87% rename from src/Pkcs11Interop.iOS/Pkcs11Interop.iOS/Properties/AssemblyInfo.cs rename to src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs index 7306f4f9..5034eb2a 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -1,8 +1,8 @@ using System.Reflection; using System.Runtime.InteropServices; -[assembly: AssemblyTitle("Pkcs11Interop.iOS")] -[assembly: AssemblyDescription("Managed .NET wrapper for unmanaged PKCS#11 libraries")] +[assembly: AssemblyTitle("Pkcs11Interop")] +[assembly: AssemblyDescription("Managed .NET wrapper for unmanaged PKCS#11 libraries (iOS version)")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] From a687918254c4b0cbfbe50145a5b670b6beb89f3e Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 22 Jan 2019 21:53:16 +0100 Subject: [PATCH 04/27] Nuget signing script --- build/{create-nuget.bat => build-nuget.bat} | 4 ++-- build/sign-nuget.bat | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) rename build/{create-nuget.bat => build-nuget.bat} (96%) create mode 100644 build/sign-nuget.bat diff --git a/build/create-nuget.bat b/build/build-nuget.bat similarity index 96% rename from build/create-nuget.bat rename to build/build-nuget.bat index 6dd3a213..90bc10cd 100644 --- a/build/create-nuget.bat +++ b/build/build-nuget.bat @@ -38,11 +38,11 @@ copy ..\src\Pkcs11Interop\Pkcs11Interop\NOTICE.txt nuget || goto :error copy Pkcs11Interop.nuspec nuget || goto :error %NUGET% pack nuget\Pkcs11Interop.nuspec || goto :error -@echo *** CREATE NUGET SUCCESSFUL *** +@echo *** BUILD NUGET SUCCESSFUL *** @endlocal @exit /b 0 :error -@echo *** CREATE NUGET FAILED *** +@echo *** BUILD NUGET FAILED *** @endlocal @exit /b 1 diff --git a/build/sign-nuget.bat b/build/sign-nuget.bat new file mode 100644 index 00000000..0657cbd8 --- /dev/null +++ b/build/sign-nuget.bat @@ -0,0 +1,19 @@ +@setlocal + +set NUGET=c:\nuget\nuget.exe + +@rem Define signing options +set CERTHASH=ef1bfeaa474bb078923831bf7732186673a5b5c9 +set TSAURL=http://time.certum.pl/ + +%NUGET% sign Pkcs11Interop*.nupkg -CertificateFingerprint %CERTHASH% -Timestamper %TSAURL% || goto :error +%NUGET% verify -Signature Pkcs11Interop*.nupkg + +@echo *** SIGN NUGET SUCCESSFUL *** +@endlocal +@exit /b 0 + +:error +@echo *** SIGN NUGET FAILED *** +@endlocal +@exit /b 1 From b5dd8d2305d3f559f271b9462ea082ee5d0581e5 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 22 Jan 2019 21:53:52 +0100 Subject: [PATCH 05/27] Use new code-signing certificate --- build/sign-all.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/sign-all.bat b/build/sign-all.bat index 027e5bb2..7c3bfe93 100644 --- a/build/sign-all.bat +++ b/build/sign-all.bat @@ -3,7 +3,7 @@ set SIGNTOOL="C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\signtool.exe" @rem Define signing options -set CERTHASH=d5de31ea974f5ea8581d633eeffa8f3ea0d479bb +set CERTHASH=ef1bfeaa474bb078923831bf7732186673a5b5c9 set TSAURL=http://time.certum.pl/ set LIBNAME=Pkcs11Interop set LIBURL=https://www.pkcs11interop.net/ @@ -28,11 +28,11 @@ netstandard1.3\Pkcs11Interop.dll ^ monoandroid2.3\Pkcs11Interop.dll ^ xamarinios1.0\Pkcs11Interop.dll || goto :error -@echo *** SIGNING SUCCESSFUL *** +@echo *** SIGN ALL SUCCESSFUL *** @endlocal @exit /b 0 :error -@echo *** SIGNING FAILED *** +@echo *** SIGN ALL FAILED *** @endlocal @exit /b 1 From bc8c4e9090ef457c64c0edba9d8791c7791c1fc2 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 22 Jan 2019 22:50:24 +0100 Subject: [PATCH 06/27] Add support for netstandard20 in 4.x branch (#101) --- appveyor.yml | 5 +- build/Pkcs11Interop.nuspec | 3 +- build/build-all.bat | 1 + build/build-netstandard1.3.bat | 23 +++++--- build/build-netstandard2.0.bat | 58 +++++++++++++++++++ build/build-nuget.bat | 3 + build/sign-all.bat | 2 + .../Pkcs11Interop.DotNetCore.Tests.csproj | 5 +- .../Pkcs11Interop/Pkcs11Interop.csproj | 4 +- .../Common/_02_CustomExceptionsTest.cs | 2 +- .../_28_Pkcs11ClassExtensionTest.cs | 8 +-- .../Pkcs11InteropTests/Settings.cs | 2 +- 12 files changed, 95 insertions(+), 21 deletions(-) create mode 100644 build/build-netstandard2.0.bat diff --git a/appveyor.yml b/appveyor.yml index 7fe7fba5..cd2f3279 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,6 +12,7 @@ environment: - Platform: net45 - Platform: sl5 - Platform: netstandard1.3 + - Platform: netstandard2.0 - Platform: monoandroid2.3 - Platform: xamarinios1.0 install: @@ -22,12 +23,14 @@ build_script: - cmd: IF "%Platform%"=="net45" (cd build && build-net45.bat) - cmd: IF "%Platform%"=="sl5" (cd build && build-sl5.bat) - cmd: IF "%Platform%"=="netstandard1.3" (cd build && build-netstandard1.3.bat --with-tests) +- cmd: IF "%Platform%"=="netstandard2.0" (cd build && build-netstandard2.0.bat --with-tests --skip-cleaning) - cmd: IF "%Platform%"=="monoandroid2.3" (cd build && build-monoandroid2.3.bat) - cmd: IF "%Platform%"=="xamarinios1.0" (cd build && build-xamarinios1.0.bat) test_script: - cmd: IF "%Platform%"=="net20" (nunit-console-x86 .\src\Pkcs11Interop\Pkcs11InteropTests\bin\Release\Pkcs11InteropTests.dll) - cmd: IF "%Platform%"=="net40" (nunit-console .\src\Pkcs11Interop\Pkcs11InteropTests\bin\Release\Pkcs11InteropTests.dll) -- cmd: IF "%Platform%"=="netstandard1.3" (dotnet vstest .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\bin\Release\Pkcs11Interop.DotNetCore.Tests.dll) +- cmd: IF "%Platform%"=="netstandard1.3" (dotnet vstest .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\bin\Release\netcoreapp1.0\Pkcs11Interop.DotNetCore.Tests.dll --Framework:".NETCoreApp,Version=v1.0") +- cmd: IF "%Platform%"=="netstandard2.0" (dotnet vstest .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\bin\Release\netcoreapp2.0\Pkcs11Interop.DotNetCore.Tests.dll --Framework:".NETCoreApp,Version=v2.0") artifacts: - path: build/$(Platform) name: $(Platform) \ No newline at end of file diff --git a/build/Pkcs11Interop.nuspec b/build/Pkcs11Interop.nuspec index c2428006..6952435b 100644 --- a/build/Pkcs11Interop.nuspec +++ b/build/Pkcs11Interop.nuspec @@ -21,10 +21,11 @@ - + + \ No newline at end of file diff --git a/build/build-all.bat b/build/build-all.bat index 89864764..94508e8e 100644 --- a/build/build-all.bat +++ b/build/build-all.bat @@ -8,6 +8,7 @@ call build-net40.bat %arg1% || goto :error call build-net45.bat %arg1% || goto :error call build-sl5.bat %arg1% || goto :error call build-netstandard1.3.bat %arg1% || goto :error +call build-netstandard2.0.bat %arg1% || goto :error call build-monoandroid2.3.bat %arg1% || goto :error call build-xamarinios1.0.bat %arg1% || goto :error diff --git a/build/build-netstandard1.3.bat b/build/build-netstandard1.3.bat index cdba3866..de0e33cf 100644 --- a/build/build-netstandard1.3.bat +++ b/build/build-netstandard1.3.bat @@ -3,6 +3,9 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 +@rem Argument "--skip-cleaning" skips solution cleaning +@set arg2=%2 + @rem Initialize build environment of Visual Studio 2017 Community/Professional/Enterprise @set tools= @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" @@ -18,28 +21,32 @@ call %tools% @rem Delete output directory rmdir /S /Q netstandard1.3 -@rem Clean solution -msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ - /p:Configuration=Release /p:Platform="Any CPU" /target:Clean || goto :error - @rem Restore dependencies for the solution msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ /p:Configuration=Release /p:Platform="Any CPU" /target:Restore || goto :error +@if not "%arg2%"=="--skip-cleaning" ( + @rem Clean solution + msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ + /p:Configuration=Release /p:Platform="Any CPU" /target:Clean || goto :error +) + @rem Build Pkcs11Interop project msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Pkcs11Interop.csproj ^ - /p:Configuration=Release /p:Platform=AnyCPU /target:Build || goto :error + /p:Configuration=Release /p:Platform=AnyCPU /p:TargetFramework=netstandard1.3 ^ + /target:Build || goto :error @if "%arg1%"=="--with-tests" ( @rem Build Pkcs11Interop.DotNetCore.Tests project msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\Pkcs11Interop.DotNetCore.Tests.csproj ^ - /p:Configuration=Release /p:Platform=AnyCPU /target:Build || goto :error + /p:Configuration=Release /p:Platform=AnyCPU /p:TargetFramework=netcoreapp1.0 ^ + /target:Build || goto :error ) @rem Copy result to output directory mkdir netstandard1.3 || goto :error -copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\Pkcs11Interop.dll netstandard1.3 || goto :error -copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\Pkcs11Interop.xml netstandard1.3 || goto :error +copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\netstandard1.3\Pkcs11Interop.dll netstandard1.3 || goto :error +copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\netstandard1.3\Pkcs11Interop.xml netstandard1.3 || goto :error @echo *** BUILD NETSTANDARD1.3 SUCCESSFUL *** @endlocal diff --git a/build/build-netstandard2.0.bat b/build/build-netstandard2.0.bat new file mode 100644 index 00000000..e3dc7409 --- /dev/null +++ b/build/build-netstandard2.0.bat @@ -0,0 +1,58 @@ +@setlocal + +@rem Argument "--with-tests" forces the build of test project +@set arg1=%1 + +@rem Argument "--skip-cleaning" skips solution cleaning +@set arg2=%2 + +@rem Initialize build environment of Visual Studio 2017 Community/Professional/Enterprise +@set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@if not defined tools goto :error +call %tools% +@echo on + +@rem Delete output directory +rmdir /S /Q netstandard2.0 + +@rem Restore dependencies for the solution +msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ + /p:Configuration=Release /p:Platform="Any CPU" /target:Restore || goto :error + +@if not "%arg2%"=="--skip-cleaning" ( + @rem Clean solution + msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ + /p:Configuration=Release /p:Platform="Any CPU" /target:Clean || goto :error +) + +@rem Build Pkcs11Interop project +msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Pkcs11Interop.csproj ^ + /p:Configuration=Release /p:Platform=AnyCPU /p:TargetFramework=netstandard2.0 ^ + /target:Build || goto :error + +@if "%arg1%"=="--with-tests" ( + @rem Build Pkcs11Interop.DotNetCore.Tests project + msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\Pkcs11Interop.DotNetCore.Tests.csproj ^ + /p:Configuration=Release /p:Platform=AnyCPU /p:TargetFramework=netcoreapp2.0 ^ + /target:Build || goto :error +) + +@rem Copy result to output directory +mkdir netstandard2.0 || goto :error +copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\netstandard2.0\Pkcs11Interop.dll netstandard2.0 || goto :error +copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\netstandard2.0\Pkcs11Interop.xml netstandard2.0 || goto :error + +@echo *** BUILD netstandard2.0 SUCCESSFUL *** +@endlocal +@exit /b 0 + +:error +@echo *** BUILD netstandard2.0 FAILED *** +@endlocal +@exit /b 1 diff --git a/build/build-nuget.bat b/build/build-nuget.bat index 90bc10cd..8dc5dbe1 100644 --- a/build/build-nuget.bat +++ b/build/build-nuget.bat @@ -11,6 +11,7 @@ mkdir nuget\lib\net40 || goto :error mkdir nuget\lib\net45 || goto :error mkdir nuget\lib\sl5 || goto :error mkdir nuget\lib\netstandard1.3 || goto :error +mkdir nuget\lib\netstandard2.0 || goto :error mkdir nuget\lib\monoandroid2.3 || goto :error mkdir nuget\lib\xamarinios1.0 || goto :error @@ -25,6 +26,8 @@ copy sl5\Pkcs11Interop.dll nuget\lib\sl5 || goto :error copy sl5\Pkcs11Interop.xml nuget\lib\sl5 || goto :error copy netstandard1.3\Pkcs11Interop.dll nuget\lib\netstandard1.3 || goto :error copy netstandard1.3\Pkcs11Interop.xml nuget\lib\netstandard1.3 || goto :error +copy netstandard2.0\Pkcs11Interop.dll nuget\lib\netstandard2.0 || goto :error +copy netstandard2.0\Pkcs11Interop.xml nuget\lib\netstandard2.0 || goto :error copy monoandroid2.3\Pkcs11Interop.dll nuget\lib\monoandroid2.3 || goto :error copy monoandroid2.3\Pkcs11Interop.xml nuget\lib\monoandroid2.3 || goto :error copy xamarinios1.0\Pkcs11Interop.dll nuget\lib\xamarinios1.0 || goto :error diff --git a/build/sign-all.bat b/build/sign-all.bat index 7c3bfe93..3c9aad3d 100644 --- a/build/sign-all.bat +++ b/build/sign-all.bat @@ -15,6 +15,7 @@ net40\Pkcs11Interop.dll ^ net45\Pkcs11Interop.dll ^ sl5\Pkcs11Interop.dll ^ netstandard1.3\Pkcs11Interop.dll ^ +netstandard2.0\Pkcs11Interop.dll ^ monoandroid2.3\Pkcs11Interop.dll ^ xamarinios1.0\Pkcs11Interop.dll || goto :error @@ -25,6 +26,7 @@ net40\Pkcs11Interop.dll ^ net45\Pkcs11Interop.dll ^ sl5\Pkcs11Interop.dll ^ netstandard1.3\Pkcs11Interop.dll ^ +netstandard2.0\Pkcs11Interop.dll ^ monoandroid2.3\Pkcs11Interop.dll ^ xamarinios1.0\Pkcs11Interop.dll || goto :error diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj index e4eca769..4fac3981 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj @@ -1,10 +1,9 @@  - netcoreapp1.1 + netcoreapp1.0;netcoreapp2.0 Net.Pkcs11Interop.Tests - $(DefineConstants);NETSTANDARD1_3 - false + true false false false diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj index 42c9041c..0c326ce4 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj @@ -1,10 +1,10 @@ - netstandard1.3 + netstandard1.3;netstandard2.0 Net.Pkcs11Interop true - false + true false false false diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs index 82203b2d..84cd64d2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs @@ -19,7 +19,7 @@ * Jaroslav IMRICH */ -#if (!SILVERLIGHT && !NETSTANDARD1_3) +#if (!SILVERLIGHT && !NETCOREAPP1_0) using System.IO; using System.Runtime.Serialization.Formatters.Binary; diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs index dc5195d8..a8b1234a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs @@ -408,7 +408,7 @@ private List GetManagedStructSizeList() { sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA40.CK_ATTRIBUTE)))); sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA40.CK_C_INITIALIZE_ARGS)))); -#if NETSTANDARD1_3 +#if NETCOREAPP1_0 sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA40.CK_INFO).GetTypeInfo().Assembly.GetType("Net.Pkcs11Interop.LowLevelAPI40.CK_FUNCTION_LIST")))); #else sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA40.CK_INFO).Assembly.GetType("Net.Pkcs11Interop.LowLevelAPI40.CK_FUNCTION_LIST")))); @@ -469,7 +469,7 @@ private List GetManagedStructSizeList() { sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA41.CK_ATTRIBUTE)))); sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA41.CK_C_INITIALIZE_ARGS)))); -#if NETSTANDARD1_3 +#if NETCOREAPP1_0 sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA41.CK_INFO).GetTypeInfo().Assembly.GetType("Net.Pkcs11Interop.LowLevelAPI41.CK_FUNCTION_LIST")))); #else sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA41.CK_INFO).Assembly.GetType("Net.Pkcs11Interop.LowLevelAPI41.CK_FUNCTION_LIST")))); @@ -533,7 +533,7 @@ private List GetManagedStructSizeList() { sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA80.CK_ATTRIBUTE)))); sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA80.CK_C_INITIALIZE_ARGS)))); -#if NETSTANDARD1_3 +#if NETCOREAPP1_0 sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA80.CK_INFO).GetTypeInfo().Assembly.GetType("Net.Pkcs11Interop.LowLevelAPI80.CK_FUNCTION_LIST")))); #else sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA80.CK_INFO).Assembly.GetType("Net.Pkcs11Interop.LowLevelAPI80.CK_FUNCTION_LIST")))); @@ -594,7 +594,7 @@ private List GetManagedStructSizeList() { sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA81.CK_ATTRIBUTE)))); sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA81.CK_C_INITIALIZE_ARGS)))); -#if NETSTANDARD1_3 +#if NETCOREAPP1_0 sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA81.CK_INFO).GetTypeInfo().Assembly.GetType("Net.Pkcs11Interop.LowLevelAPI81.CK_FUNCTION_LIST")))); #else sizeList.Add(Convert.ToUInt64(UnmanagedMemory.SizeOf(typeof(LLA81.CK_INFO).Assembly.GetType("Net.Pkcs11Interop.LowLevelAPI81.CK_FUNCTION_LIST")))); diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs index 49470d42..5ad66224 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs @@ -179,7 +179,7 @@ private static string GetPkcs11MockLibraryPath() #if SILVERLIGHT string path = System.Windows.Browser.HtmlPage.Document.DocumentUri.ToString(); -#elif NETSTANDARD1_3 +#elif NETCOREAPP1_0 string path = typeof(Settings).GetTypeInfo().Assembly.CodeBase; #else string path = typeof(Settings).Assembly.CodeBase; From 9b1ca5b75756ea61a10af7832a1dba14e2dbe662 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 22 Jan 2019 22:55:00 +0100 Subject: [PATCH 07/27] Remove coverity --- README.md | 1 - build/build-for-coverity-scan.bat | 39 ------------------- .../Common/AttributeValueException.cs | 2 - .../Pkcs11Interop/Common/Pkcs11Exception.cs | 2 - .../Common/UnmanagedException.cs | 2 - 5 files changed, 46 deletions(-) delete mode 100644 build/build-for-coverity-scan.bat diff --git a/README.md b/README.md index 1fcdecfe..e143389d 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ Pkcs11Interop [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/Pkcs11Interop/Pkcs11Interop/blob/master/LICENSE.md) [![AppVeyor](https://ci.appveyor.com/api/projects/status/lb1jxb4t4203g3t9?svg=true)](https://ci.appveyor.com/project/pkcs11interop/pkcs11interop) -[![Coverity](https://img.shields.io/coverity/scan/2961.svg)](https://scan.coverity.com/projects/pkcs11interop-pkcs11interop) [![NuGet](https://img.shields.io/badge/nuget-pkcs11interop-blue.svg)](https://www.nuget.org/packages/Pkcs11Interop/) [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-pkcs11interop-blue.svg)](https://stackoverflow.com/questions/tagged/pkcs11interop) [![Twitter](https://img.shields.io/badge/twitter-p11interop-blue.svg)](https://twitter.com/p11interop) diff --git a/build/build-for-coverity-scan.bat b/build/build-for-coverity-scan.bat deleted file mode 100644 index 4d25790d..00000000 --- a/build/build-for-coverity-scan.bat +++ /dev/null @@ -1,39 +0,0 @@ -@setlocal - -@rem Add COVERITY tools to PATH -@set PATH=%PATH%;d:\temp\coverity\cov-analysis-win64-8.7.0\bin\ - -@rem Initialize Visual Studio build environment: -@rem - Visual Studio 2017 Community/Professional/Enterprise is the preferred option -@rem - Visual Studio 2015 is the fallback option (which might or might not work) -@set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@if not defined tools goto :error -call %tools% -@echo on - -@rem Clean solution -msbuild ..\src\Pkcs11Interop\Pkcs11Interop.sln ^ - /p:Configuration=Release /p:Platform="Any CPU" /p:TargetFrameworkVersion=v4.0 ^ - /target:Clean || goto :error - -@rem Build Pkcs11Interop project -cov-build --dir cov-int msbuild ..\src\Pkcs11Interop\Pkcs11Interop\Pkcs11Interop.csproj ^ - /p:Configuration=Release /p:Platform=AnyCPU /p:TargetFrameworkVersion=v4.0 ^ - /p:DefineConstants=COVERITY /target:Build || goto :error - -@echo *** BUILD FOR COVERITY SCAN SUCCESSFUL *** -@endlocal -@exit /b 0 - -:error -@echo *** BUILD FOR COVERITY SCAN FAILED *** -@endlocal -@exit /b 1 diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs index 83cf8c01..3623085c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs @@ -122,10 +122,8 @@ public AttributeValueException(ulong attribute, Exception innerException) protected AttributeValueException(SerializationInfo info, StreamingContext context) : base(info, context) { -#if !COVERITY // To avoid false positive - CID 181201: Null pointer dereferences (REVERSE_INULL) >>> Null - checking "info" suggests that it may be null, but it has already been dereferenced on all paths leading to the check. if (info == null) throw new ArgumentNullException("info"); -#endif _attribute = (CKA)info.GetUInt32("Attribute"); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs index 21f7df8a..1ec9a378 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs @@ -87,10 +87,8 @@ public Pkcs11Exception(string method, CKR rv) protected Pkcs11Exception(SerializationInfo info, StreamingContext context) : base(info, context) { -#if !COVERITY // To avoid false positive - CID 181201: Null pointer dereferences (REVERSE_INULL) >>> Null - checking "info" suggests that it may be null, but it has already been dereferenced on all paths leading to the check. if (info == null) throw new ArgumentNullException("info"); -#endif _method = info.GetString("Method"); _rv = (CKR)info.GetUInt32("RV"); diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs index 493fbc48..4e00b734 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs @@ -80,10 +80,8 @@ public UnmanagedException(string message, int errorCode) protected UnmanagedException(SerializationInfo info, StreamingContext context) : base(info, context) { -#if !COVERITY // To avoid false positive - CID 181201: Null pointer dereferences (REVERSE_INULL) >>> Null - checking "info" suggests that it may be null, but it has already been dereferenced on all paths leading to the check. if (info == null) throw new ArgumentNullException("info"); -#endif bool errorCodeSet = info.GetBoolean("ErrorCodeSet"); From ec52d757b2b4d810f31427ad991bb7de8fe6fd69 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 22 Jan 2019 23:13:54 +0100 Subject: [PATCH 08/27] Configure CI for Linux and OSX (#102) Use travis-ci.org to build and test netstandard2.0 version of Pkcs11Interop with .NET Core SDK 2.1.4 on Ubuntu and OS X --- .travis.yml | 24 +++++++++++++++++++ .../Pkcs11Interop.DotNetCore.Tests.csproj | 6 ++--- .../Pkcs11Interop/Pkcs11Interop.csproj | 3 +++ 3 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..0a854dd2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: csharp + +matrix: + include: + - os: linux + dist: trusty + sudo: required + dotnet: 2.1.4 + mono: none + - os: osx + osx_image: xcode9.3 + dotnet: 2.1.4 + mono: none + +branches: + only: + - master + - 4.x-maintenance + +script: + - dotnet --info + - dotnet restore ./src/Pkcs11Interop.NetStandard/ + - dotnet build ./src/Pkcs11Interop.NetStandard/ + - dotnet test -f netcoreapp2.0 ./src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/ diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj index 4fac3981..c5672d02 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Pkcs11Interop.DotNetCore.Tests.csproj @@ -22,9 +22,9 @@ - - - + + + diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj index 0c326ce4..867e62fc 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj @@ -16,6 +16,9 @@ false false false + + + True ..\..\Pkcs11Interop\Pkcs11Interop\Pkcs11Interop.snk False From 1a9e1c580f498ac856296a89ab970edc5408a38e Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 22 Jan 2019 23:32:00 +0100 Subject: [PATCH 09/27] Add Travis badge to README and update badges --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e143389d..e4ea327c 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,11 @@ Pkcs11Interop ============= **Managed .NET wrapper for unmanaged PKCS#11 libraries** -[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/Pkcs11Interop/Pkcs11Interop/blob/master/LICENSE.md) -[![AppVeyor](https://ci.appveyor.com/api/projects/status/lb1jxb4t4203g3t9?svg=true)](https://ci.appveyor.com/project/pkcs11interop/pkcs11interop) +[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/Pkcs11Interop/Pkcs11Interop/blob/4.x-maintenance/LICENSE.md) +[![AppVeyor](https://ci.appveyor.com/api/projects/status/lb1jxb4t4203g3t9/branch/4.x-maintenance?svg=true)](https://ci.appveyor.com/project/pkcs11interop/pkcs11interop/branch/4.x-maintenance) +[![Travis](https://travis-ci.org/Pkcs11Interop/Pkcs11Interop.svg?branch=4.x-maintenance)](https://travis-ci.org/Pkcs11Interop/Pkcs11Interop) [![NuGet](https://img.shields.io/badge/nuget-pkcs11interop-blue.svg)](https://www.nuget.org/packages/Pkcs11Interop/) -[![Stack Overflow](https://img.shields.io/badge/stack%20overflow-pkcs11interop-blue.svg)](https://stackoverflow.com/questions/tagged/pkcs11interop) +[![Stack Overflow](https://img.shields.io/badge/stack-pkcs11interop-blue.svg)](https://stackoverflow.com/questions/tagged/pkcs11interop) [![Twitter](https://img.shields.io/badge/twitter-p11interop-blue.svg)](https://twitter.com/p11interop) ## Table of Contents From 8f4e2cbfd143a291571edadaa0c8f0cfe4b8827d Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Wed, 23 Jan 2019 22:35:30 +0100 Subject: [PATCH 10/27] Xamarin.Mac support in 4.x branch (#103) --- appveyor.yml | 2 + build/Pkcs11Interop.nuspec | 1 + build/build-all.bat | 1 + build/build-nuget.bat | 3 + build/build-xamarinmac2.0.bat | 76 ++++++++++ build/sign-all.bat | 6 +- .../Pkcs11Interop/Pkcs11Interop.csproj | 2 +- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 +- .../Pkcs11Interop/Common/NativeMethods.cs | 22 ++- .../LowLevelAPI40/NativeMethods.cs | 142 +++++++++--------- .../LowLevelAPI41/NativeMethods.cs | 142 +++++++++--------- .../LowLevelAPI80/NativeMethods.cs | 142 +++++++++--------- .../LowLevelAPI81/NativeMethods.cs | 142 +++++++++--------- .../_28_Pkcs11ClassExtensionTest.cs | 10 +- .../_29_SlotClassExtensionTest.cs | 10 +- .../_30_SessionClassExtensionTest.cs | 10 +- 16 files changed, 424 insertions(+), 291 deletions(-) create mode 100644 build/build-xamarinmac2.0.bat diff --git a/appveyor.yml b/appveyor.yml index cd2f3279..0fcf95c1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,6 +15,7 @@ environment: - Platform: netstandard2.0 - Platform: monoandroid2.3 - Platform: xamarinios1.0 + - Platform: xamarinmac2.0 install: - cmd: IF "%Platform%"=="monoandroid2.3" (powershell -File ./build/appveyor-switch-android-sdk.ps1) build_script: @@ -26,6 +27,7 @@ build_script: - cmd: IF "%Platform%"=="netstandard2.0" (cd build && build-netstandard2.0.bat --with-tests --skip-cleaning) - cmd: IF "%Platform%"=="monoandroid2.3" (cd build && build-monoandroid2.3.bat) - cmd: IF "%Platform%"=="xamarinios1.0" (cd build && build-xamarinios1.0.bat) +- cmd: IF "%Platform%"=="xamarinmac2.0" (cd build && build-xamarinmac2.0.bat) test_script: - cmd: IF "%Platform%"=="net20" (nunit-console-x86 .\src\Pkcs11Interop\Pkcs11InteropTests\bin\Release\Pkcs11InteropTests.dll) - cmd: IF "%Platform%"=="net40" (nunit-console .\src\Pkcs11Interop\Pkcs11InteropTests\bin\Release\Pkcs11InteropTests.dll) diff --git a/build/Pkcs11Interop.nuspec b/build/Pkcs11Interop.nuspec index 6952435b..c0c12868 100644 --- a/build/Pkcs11Interop.nuspec +++ b/build/Pkcs11Interop.nuspec @@ -25,6 +25,7 @@ + diff --git a/build/build-all.bat b/build/build-all.bat index 94508e8e..e950129a 100644 --- a/build/build-all.bat +++ b/build/build-all.bat @@ -11,6 +11,7 @@ call build-netstandard1.3.bat %arg1% || goto :error call build-netstandard2.0.bat %arg1% || goto :error call build-monoandroid2.3.bat %arg1% || goto :error call build-xamarinios1.0.bat %arg1% || goto :error +call build-xamarinmac2.0.bat %arg1% || goto :error @echo *** BUILD ALL SUCCESSFUL *** @endlocal diff --git a/build/build-nuget.bat b/build/build-nuget.bat index 8dc5dbe1..5dc5fd53 100644 --- a/build/build-nuget.bat +++ b/build/build-nuget.bat @@ -14,6 +14,7 @@ mkdir nuget\lib\netstandard1.3 || goto :error mkdir nuget\lib\netstandard2.0 || goto :error mkdir nuget\lib\monoandroid2.3 || goto :error mkdir nuget\lib\xamarinios1.0 || goto :error +mkdir nuget\lib\xamarinmac2.0 || goto :error @rem Copy assemblies to output directories copy net20\Pkcs11Interop.dll nuget\lib\net20 || goto :error @@ -32,6 +33,8 @@ copy monoandroid2.3\Pkcs11Interop.dll nuget\lib\monoandroid2.3 || goto :error copy monoandroid2.3\Pkcs11Interop.xml nuget\lib\monoandroid2.3 || goto :error copy xamarinios1.0\Pkcs11Interop.dll nuget\lib\xamarinios1.0 || goto :error copy xamarinios1.0\Pkcs11Interop.xml nuget\lib\xamarinios1.0 || goto :error +copy xamarinmac2.0\Pkcs11Interop.dll nuget\lib\xamarinmac2.0 || goto :error +copy xamarinmac2.0\Pkcs11Interop.xml nuget\lib\xamarinmac2.0 || goto :error @rem Copy license to output directory copy ..\src\Pkcs11Interop\Pkcs11Interop\LICENSE.txt nuget || goto :error diff --git a/build/build-xamarinmac2.0.bat b/build/build-xamarinmac2.0.bat new file mode 100644 index 00000000..49944d75 --- /dev/null +++ b/build/build-xamarinmac2.0.bat @@ -0,0 +1,76 @@ +@setlocal + +@rem Argument "--with-tests" forces the build of test project +@set arg1=%1 + +@rem Argument "--skip-cleaning" skips solution cleaning +@set arg2=%2 + +@rem Initialize build environment of Visual Studio 2017 Community/Professional/Enterprise +@set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@if not defined tools goto :error +call %tools% +@echo on + +@rem Delete output directory +rmdir /S /Q xamarinmac2.0 + +@rem Restore dependencies for the solution +call :enablexamarinmac +msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ + /p:Configuration=Release /p:Platform="Any CPU" /target:Restore || goto :error + +@if not "%arg2%"=="--skip-cleaning" ( + @rem Clean solution + msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.sln ^ + /p:Configuration=Release /p:Platform="Any CPU" /target:Clean || goto :error +) + +@rem Build Pkcs11Interop project +msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Pkcs11Interop.csproj ^ + /p:Configuration=Release /p:Platform=AnyCPU /p:TargetFramework=xamarinmac2.0 ^ + /target:Build || goto :error + +@if "%arg1%"=="--with-tests" ( + @rem There is no test project available for Xamarin.Mac +) + +@rem Copy result to output directory +mkdir xamarinmac2.0 || goto :error +copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\xamarinmac2.0\Pkcs11Interop.dll xamarinmac2.0 || goto :error +copy ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\bin\Release\xamarinmac2.0\Pkcs11Interop.xml xamarinmac2.0 || goto :error + +call :disablexamarinmac +@echo *** BUILD XAMARINMAC2.0 SUCCESSFUL *** +@endlocal +@exit /b 0 + +:error +call :disablexamarinmac +@echo *** BUILD XAMARINMAC2.0 FAILED *** +@endlocal +@exit /b 1 + +:enablexamarinmac +@rem Use "MSBuild.Sdk.Extras" instead of "Microsoft.NET.Sdk" which does not support "xamarinmac2.0" target framework +set csprojfile=..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Pkcs11Interop.csproj +powershell -Command "(Get-Content %csprojfile%).replace('Microsoft.NET.Sdk', 'MSBuild.Sdk.Extras/1.6.65') | Set-Content -Encoding ASCII %csprojfile%" +powershell -Command "(Get-Content %csprojfile%).replace('', ';xamarinmac2.0') | Set-Content -Encoding ASCII %csprojfile%" +set assemblyinfofile=..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Properties\AssemblyInfo.cs +powershell -Command "(Get-Content %assemblyinfofile%).replace('NetStandard version', 'Mac version') | Set-Content -Encoding ASCII %assemblyinfofile%" +@exit /b 0 + +:disablexamarinmac +@rem Revert from "MSBuild.Sdk.Extras" back to "Microsoft.NET.Sdk" +set csprojfile=..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Pkcs11Interop.csproj +powershell -Command "(Get-Content %csprojfile%).replace('MSBuild.Sdk.Extras/1.6.65', 'Microsoft.NET.Sdk') | Set-Content -Encoding ASCII %csprojfile%" +powershell -Command "(Get-Content %csprojfile%).replace(';xamarinmac2.0', '') | Set-Content -Encoding ASCII %csprojfile%" +set assemblyinfofile=..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Properties\AssemblyInfo.cs +powershell -Command "(Get-Content %assemblyinfofile%).replace('Mac version', 'NetStandard version') | Set-Content -Encoding ASCII %assemblyinfofile%" +@exit /b 0 diff --git a/build/sign-all.bat b/build/sign-all.bat index 3c9aad3d..47e6642b 100644 --- a/build/sign-all.bat +++ b/build/sign-all.bat @@ -17,7 +17,8 @@ sl5\Pkcs11Interop.dll ^ netstandard1.3\Pkcs11Interop.dll ^ netstandard2.0\Pkcs11Interop.dll ^ monoandroid2.3\Pkcs11Interop.dll ^ -xamarinios1.0\Pkcs11Interop.dll || goto :error +xamarinios1.0\Pkcs11Interop.dll ^ +xamarinmac2.0\Pkcs11Interop.dll || goto :error @rem Sign all assemblies using SHA256withRSA algorithm %SIGNTOOL% sign /sha1 %CERTHASH% /as /fd sha256 /tr %TSAURL% /td sha256 /d %LIBNAME% /du %LIBURL% ^ @@ -28,7 +29,8 @@ sl5\Pkcs11Interop.dll ^ netstandard1.3\Pkcs11Interop.dll ^ netstandard2.0\Pkcs11Interop.dll ^ monoandroid2.3\Pkcs11Interop.dll ^ -xamarinios1.0\Pkcs11Interop.dll || goto :error +xamarinios1.0\Pkcs11Interop.dll ^ +xamarinmac2.0\Pkcs11Interop.dll || goto :error @echo *** SIGN ALL SUCCESSFUL *** @endlocal diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj index 867e62fc..d060c5d9 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj @@ -2171,4 +2171,4 @@ - \ No newline at end of file + diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs index 4e4c7e14..6763d9f7 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -14,4 +14,4 @@ [assembly: Guid("af7dfa22-9f88-4497-bf4f-ddd2eda16fb5")] [assembly: AssemblyVersion("4.0.0")] [assembly: AssemblyFileVersion("4.0.0")] -[assembly: AssemblyInformationalVersion("4.0.0")] \ No newline at end of file +[assembly: AssemblyInformationalVersion("4.0.0")] diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs index e39f8f52..4b614ec0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs @@ -107,6 +107,12 @@ internal static class NativeMethods #region Unix +#if XAMARINMAC2_0 + private const string _dllName = "/usr/lib/libSystem.dylib"; +#else + private const string _dllName = "libdl"; +#endif + /// /// Immediately resolve all symbols /// @@ -131,7 +137,7 @@ internal static class NativeMethods /// Human readable string describing the most recent error that occurred from dlopen(), dlsym() or dlclose() since the last call to dlerror(). /// /// Human readable string describing the most recent error or NULL if no errors have occurred since initialization or since it was last called. - [DllImport("libdl", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern IntPtr dlerror(); /// @@ -141,10 +147,10 @@ internal static class NativeMethods /// RTLD_LAZY for lazy function call binding or RTLD_NOW immediate function call binding. /// Handle for the dynamic library if successful, IntPtr.Zero otherwise. #if SILVERLIGHT - [DllImport("libdl", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false)] internal static extern IntPtr dlopen(string filename, int flag); #else - [DllImport("libdl", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true)] internal static extern IntPtr dlopen(string filename, int flag); #endif @@ -154,11 +160,11 @@ internal static class NativeMethods /// Library path. /// True if library is compatible. If library is not compatible, it returns false and sets an error string that can be examined with dlerror. #if SILVERLIGHT - [DllImport("libdl", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false)] [return: MarshalAs(UnmanagedType.U1)] internal static extern bool dlopen_preflight(string path); #else - [DllImport("libdl", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true)] [return: MarshalAs(UnmanagedType.U1)] internal static extern bool dlopen_preflight(string path); #endif @@ -168,7 +174,7 @@ internal static class NativeMethods /// /// Handle for the dynamic library. /// Returns 0 on success, and nonzero on error. - [DllImport("libdl", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern int dlclose(IntPtr handle); /// @@ -178,10 +184,10 @@ internal static class NativeMethods /// Name of symbol that should be addressed. /// Returns 0 on success, and nonzero on error. #if SILVERLIGHT - [DllImport("libdl", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false)] internal static extern IntPtr dlsym(IntPtr handle, string symbol); #else - [DllImport("libdl", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true)] internal static extern IntPtr dlsym(IntPtr handle, string symbol); #endif diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs index 957a106e..e88320ae 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs @@ -27,208 +27,214 @@ namespace Net.Pkcs11Interop.LowLevelAPI40 { internal static class NativeMethods { - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] +#if XAMARINMAC2_0 + private const string _dllName = "NonExistingLibrary"; +#else + private const string _dllName = "__Internal"; +#endif + + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Initialize(CK_C_INITIALIZE_ARGS initArgs); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Finalize(IntPtr reserved); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetInfo(ref CK_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetFunctionList(out IntPtr functionList); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetSlotList([MarshalAs(UnmanagedType.U1)] bool tokenPresent, uint[] slotList, ref uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetSlotInfo(uint slotId, ref CK_SLOT_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetTokenInfo(uint slotId, ref CK_TOKEN_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetMechanismList(uint slotId, uint[] mechanismList, ref uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetMechanismInfo(uint slotId, uint type, ref CK_MECHANISM_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_InitToken(uint slotId, byte[] pin, uint pinLen, byte[] label); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_InitPIN(uint session, byte[] pin, uint pinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SetPIN(uint session, byte[] oldPin, uint oldPinLen, byte[] newPin, uint newPinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_OpenSession(uint slotId, uint flags, IntPtr application, IntPtr notify, ref uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CloseSession(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CloseAllSessions(uint slotId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetSessionInfo(uint session, ref CK_SESSION_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetOperationState(uint session, byte[] operationState, ref uint operationStateLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SetOperationState(uint session, byte[] operationState, uint operationStateLen, uint encryptionKey, uint authenticationKey); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Login(uint session, uint userType, byte[] pin, uint pinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Logout(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CreateObject(uint session, CK_ATTRIBUTE[] template, uint count, ref uint objectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CopyObject(uint session, uint objectId, CK_ATTRIBUTE[] template, uint count, ref uint newObjectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DestroyObject(uint session, uint objectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetObjectSize(uint session, uint objectId, ref uint size); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetAttributeValue(uint session, uint objectId, [In, Out] CK_ATTRIBUTE[] template, uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SetAttributeValue(uint session, uint objectId, CK_ATTRIBUTE[] template, uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_FindObjectsInit(uint session, CK_ATTRIBUTE[] template, uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_FindObjects(uint session, uint[] objectId, uint maxObjectCount, ref uint objectCount); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_FindObjectsFinal(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_EncryptInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Encrypt(uint session, byte[] data, uint dataLen, byte[] encryptedData, ref uint encryptedDataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_EncryptUpdate(uint session, byte[] part, uint partLen, byte[] encryptedPart, ref uint encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_EncryptFinal(uint session, byte[] lastEncryptedPart, ref uint lastEncryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Decrypt(uint session, byte[] encryptedData, uint encryptedDataLen, byte[] data, ref uint dataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptUpdate(uint session, byte[] encryptedPart, uint encryptedPartLen, byte[] part, ref uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptFinal(uint session, byte[] lastPart, ref uint lastPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestInit(uint session, ref CK_MECHANISM mechanism); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Digest(uint session, byte[] data, uint dataLen, byte[] digest, ref uint digestLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestUpdate(uint session, byte[] part, uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestKey(uint session, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestFinal(uint session, byte[] digest, ref uint digestLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Sign(uint session, byte[] data, uint dataLen, byte[] signature, ref uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignUpdate(uint session, byte[] part, uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignFinal(uint session, byte[] signature, ref uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignRecoverInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignRecover(uint session, byte[] data, uint dataLen, byte[] signature, ref uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Verify(uint session, byte[] data, uint dataLen, byte[] signature, uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyUpdate(uint session, byte[] part, uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyFinal(uint session, byte[] signature, uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyRecoverInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyRecover(uint session, byte[] signature, uint signatureLen, byte[] data, ref uint dataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestEncryptUpdate(uint session, byte[] part, uint partLen, byte[] encryptedPart, ref uint encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptDigestUpdate(uint session, byte[] encryptedPart, uint encryptedPartLen, byte[] part, ref uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignEncryptUpdate(uint session, byte[] part, uint partLen, byte[] encryptedPart, ref uint encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptVerifyUpdate(uint session, byte[] encryptedPart, uint encryptedPartLen, byte[] part, ref uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GenerateKey(uint session, ref CK_MECHANISM mechanism, CK_ATTRIBUTE[] template, uint count, ref uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GenerateKeyPair(uint session, ref CK_MECHANISM mechanism, CK_ATTRIBUTE[] publicKeyTemplate, uint publicKeyAttributeCount, CK_ATTRIBUTE[] privateKeyTemplate, uint privateKeyAttributeCount, ref uint publicKey, ref uint privateKey); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_WrapKey(uint session, ref CK_MECHANISM mechanism, uint wrappingKey, uint key, byte[] wrappedKey, ref uint wrappedKeyLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_UnwrapKey(uint session, ref CK_MECHANISM mechanism, uint unwrappingKey, byte[] wrappedKey, uint wrappedKeyLen, CK_ATTRIBUTE[] template, uint attributeCount, ref uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DeriveKey(uint session, ref CK_MECHANISM mechanism, uint baseKey, CK_ATTRIBUTE[] template, uint attributeCount, ref uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SeedRandom(uint session, byte[] seed, uint seedLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GenerateRandom(uint session, byte[] randomData, uint randomLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetFunctionStatus(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CancelFunction(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_WaitForSlotEvent(uint flags, ref uint slot, IntPtr reserved); } } diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs index 2b76a3f1..ba87ae8d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs @@ -27,208 +27,214 @@ namespace Net.Pkcs11Interop.LowLevelAPI41 { internal static class NativeMethods { - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] +#if XAMARINMAC2_0 + private const string _dllName = "NonExistingLibrary"; +#else + private const string _dllName = "__Internal"; +#endif + + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Initialize(CK_C_INITIALIZE_ARGS initArgs); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Finalize(IntPtr reserved); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetInfo(ref CK_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetFunctionList(out IntPtr functionList); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetSlotList([MarshalAs(UnmanagedType.U1)] bool tokenPresent, uint[] slotList, ref uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetSlotInfo(uint slotId, ref CK_SLOT_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetTokenInfo(uint slotId, ref CK_TOKEN_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetMechanismList(uint slotId, uint[] mechanismList, ref uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetMechanismInfo(uint slotId, uint type, ref CK_MECHANISM_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_InitToken(uint slotId, byte[] pin, uint pinLen, byte[] label); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_InitPIN(uint session, byte[] pin, uint pinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SetPIN(uint session, byte[] oldPin, uint oldPinLen, byte[] newPin, uint newPinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_OpenSession(uint slotId, uint flags, IntPtr application, IntPtr notify, ref uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CloseSession(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CloseAllSessions(uint slotId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetSessionInfo(uint session, ref CK_SESSION_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetOperationState(uint session, byte[] operationState, ref uint operationStateLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SetOperationState(uint session, byte[] operationState, uint operationStateLen, uint encryptionKey, uint authenticationKey); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Login(uint session, uint userType, byte[] pin, uint pinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Logout(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CreateObject(uint session, CK_ATTRIBUTE[] template, uint count, ref uint objectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CopyObject(uint session, uint objectId, CK_ATTRIBUTE[] template, uint count, ref uint newObjectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DestroyObject(uint session, uint objectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetObjectSize(uint session, uint objectId, ref uint size); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetAttributeValue(uint session, uint objectId, [In, Out] CK_ATTRIBUTE[] template, uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SetAttributeValue(uint session, uint objectId, CK_ATTRIBUTE[] template, uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_FindObjectsInit(uint session, CK_ATTRIBUTE[] template, uint count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_FindObjects(uint session, uint[] objectId, uint maxObjectCount, ref uint objectCount); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_FindObjectsFinal(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_EncryptInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Encrypt(uint session, byte[] data, uint dataLen, byte[] encryptedData, ref uint encryptedDataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_EncryptUpdate(uint session, byte[] part, uint partLen, byte[] encryptedPart, ref uint encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_EncryptFinal(uint session, byte[] lastEncryptedPart, ref uint lastEncryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Decrypt(uint session, byte[] encryptedData, uint encryptedDataLen, byte[] data, ref uint dataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptUpdate(uint session, byte[] encryptedPart, uint encryptedPartLen, byte[] part, ref uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptFinal(uint session, byte[] lastPart, ref uint lastPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestInit(uint session, ref CK_MECHANISM mechanism); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Digest(uint session, byte[] data, uint dataLen, byte[] digest, ref uint digestLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestUpdate(uint session, byte[] part, uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestKey(uint session, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestFinal(uint session, byte[] digest, ref uint digestLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Sign(uint session, byte[] data, uint dataLen, byte[] signature, ref uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignUpdate(uint session, byte[] part, uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignFinal(uint session, byte[] signature, ref uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignRecoverInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignRecover(uint session, byte[] data, uint dataLen, byte[] signature, ref uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_Verify(uint session, byte[] data, uint dataLen, byte[] signature, uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyUpdate(uint session, byte[] part, uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyFinal(uint session, byte[] signature, uint signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyRecoverInit(uint session, ref CK_MECHANISM mechanism, uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_VerifyRecover(uint session, byte[] signature, uint signatureLen, byte[] data, ref uint dataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DigestEncryptUpdate(uint session, byte[] part, uint partLen, byte[] encryptedPart, ref uint encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptDigestUpdate(uint session, byte[] encryptedPart, uint encryptedPartLen, byte[] part, ref uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SignEncryptUpdate(uint session, byte[] part, uint partLen, byte[] encryptedPart, ref uint encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DecryptVerifyUpdate(uint session, byte[] encryptedPart, uint encryptedPartLen, byte[] part, ref uint partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GenerateKey(uint session, ref CK_MECHANISM mechanism, CK_ATTRIBUTE[] template, uint count, ref uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GenerateKeyPair(uint session, ref CK_MECHANISM mechanism, CK_ATTRIBUTE[] publicKeyTemplate, uint publicKeyAttributeCount, CK_ATTRIBUTE[] privateKeyTemplate, uint privateKeyAttributeCount, ref uint publicKey, ref uint privateKey); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_WrapKey(uint session, ref CK_MECHANISM mechanism, uint wrappingKey, uint key, byte[] wrappedKey, ref uint wrappedKeyLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_UnwrapKey(uint session, ref CK_MECHANISM mechanism, uint unwrappingKey, byte[] wrappedKey, uint wrappedKeyLen, CK_ATTRIBUTE[] template, uint attributeCount, ref uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_DeriveKey(uint session, ref CK_MECHANISM mechanism, uint baseKey, CK_ATTRIBUTE[] template, uint attributeCount, ref uint key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_SeedRandom(uint session, byte[] seed, uint seedLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GenerateRandom(uint session, byte[] randomData, uint randomLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetFunctionStatus(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_CancelFunction(uint session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_WaitForSlotEvent(uint flags, ref uint slot, IntPtr reserved); } } diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs index ef1d0f03..95b93e85 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs @@ -27,208 +27,214 @@ namespace Net.Pkcs11Interop.LowLevelAPI80 { internal static class NativeMethods { - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] +#if XAMARINMAC2_0 + private const string _dllName = "NonExistingLibrary"; +#else + private const string _dllName = "__Internal"; +#endif + + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Initialize(CK_C_INITIALIZE_ARGS initArgs); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Finalize(IntPtr reserved); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetInfo(ref CK_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetFunctionList(out IntPtr functionList); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetSlotList([MarshalAs(UnmanagedType.U1)] bool tokenPresent, ulong[] slotList, ref ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetSlotInfo(ulong slotId, ref CK_SLOT_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetTokenInfo(ulong slotId, ref CK_TOKEN_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetMechanismList(ulong slotId, ulong[] mechanismList, ref ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetMechanismInfo(ulong slotId, ulong type, ref CK_MECHANISM_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_InitToken(ulong slotId, byte[] pin, ulong pinLen, byte[] label); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_InitPIN(ulong session, byte[] pin, ulong pinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SetPIN(ulong session, byte[] oldPin, ulong oldPinLen, byte[] newPin, ulong newPinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_OpenSession(ulong slotId, ulong flags, IntPtr application, IntPtr notify, ref ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CloseSession(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CloseAllSessions(ulong slotId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetSessionInfo(ulong session, ref CK_SESSION_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetOperationState(ulong session, byte[] operationState, ref ulong operationStateLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SetOperationState(ulong session, byte[] operationState, ulong operationStateLen, ulong encryptionKey, ulong authenticationKey); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Login(ulong session, ulong userType, byte[] pin, ulong pinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Logout(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CreateObject(ulong session, CK_ATTRIBUTE[] template, ulong count, ref ulong objectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CopyObject(ulong session, ulong objectId, CK_ATTRIBUTE[] template, ulong count, ref ulong newObjectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DestroyObject(ulong session, ulong objectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetObjectSize(ulong session, ulong objectId, ref ulong size); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetAttributeValue(ulong session, ulong objectId, [In, Out] CK_ATTRIBUTE[] template, ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SetAttributeValue(ulong session, ulong objectId, CK_ATTRIBUTE[] template, ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_FindObjectsInit(ulong session, CK_ATTRIBUTE[] template, ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_FindObjects(ulong session, ulong[] objectId, ulong maxObjectCount, ref ulong objectCount); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_FindObjectsFinal(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_EncryptInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Encrypt(ulong session, byte[] data, ulong dataLen, byte[] encryptedData, ref ulong encryptedDataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_EncryptUpdate(ulong session, byte[] part, ulong partLen, byte[] encryptedPart, ref ulong encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_EncryptFinal(ulong session, byte[] lastEncryptedPart, ref ulong lastEncryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Decrypt(ulong session, byte[] encryptedData, ulong encryptedDataLen, byte[] data, ref ulong dataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptUpdate(ulong session, byte[] encryptedPart, ulong encryptedPartLen, byte[] part, ref ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptFinal(ulong session, byte[] lastPart, ref ulong lastPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestInit(ulong session, ref CK_MECHANISM mechanism); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Digest(ulong session, byte[] data, ulong dataLen, byte[] digest, ref ulong digestLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestUpdate(ulong session, byte[] part, ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestKey(ulong session, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestFinal(ulong session, byte[] digest, ref ulong digestLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Sign(ulong session, byte[] data, ulong dataLen, byte[] signature, ref ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignUpdate(ulong session, byte[] part, ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignFinal(ulong session, byte[] signature, ref ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignRecoverInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignRecover(ulong session, byte[] data, ulong dataLen, byte[] signature, ref ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Verify(ulong session, byte[] data, ulong dataLen, byte[] signature, ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyUpdate(ulong session, byte[] part, ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyFinal(ulong session, byte[] signature, ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyRecoverInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyRecover(ulong session, byte[] signature, ulong signatureLen, byte[] data, ref ulong dataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestEncryptUpdate(ulong session, byte[] part, ulong partLen, byte[] encryptedPart, ref ulong encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptDigestUpdate(ulong session, byte[] encryptedPart, ulong encryptedPartLen, byte[] part, ref ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignEncryptUpdate(ulong session, byte[] part, ulong partLen, byte[] encryptedPart, ref ulong encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptVerifyUpdate(ulong session, byte[] encryptedPart, ulong encryptedPartLen, byte[] part, ref ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GenerateKey(ulong session, ref CK_MECHANISM mechanism, CK_ATTRIBUTE[] template, ulong count, ref ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GenerateKeyPair(ulong session, ref CK_MECHANISM mechanism, CK_ATTRIBUTE[] publicKeyTemplate, ulong publicKeyAttributeCount, CK_ATTRIBUTE[] privateKeyTemplate, ulong privateKeyAttributeCount, ref ulong publicKey, ref ulong privateKey); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_WrapKey(ulong session, ref CK_MECHANISM mechanism, ulong wrappingKey, ulong key, byte[] wrappedKey, ref ulong wrappedKeyLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_UnwrapKey(ulong session, ref CK_MECHANISM mechanism, ulong unwrappingKey, byte[] wrappedKey, ulong wrappedKeyLen, CK_ATTRIBUTE[] template, ulong attributeCount, ref ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DeriveKey(ulong session, ref CK_MECHANISM mechanism, ulong baseKey, CK_ATTRIBUTE[] template, ulong attributeCount, ref ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SeedRandom(ulong session, byte[] seed, ulong seedLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GenerateRandom(ulong session, byte[] randomData, ulong randomLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetFunctionStatus(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CancelFunction(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_WaitForSlotEvent(ulong flags, ref ulong slot, IntPtr reserved); } } diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs index c39b1019..125eeabb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs @@ -27,208 +27,214 @@ namespace Net.Pkcs11Interop.LowLevelAPI81 { internal static class NativeMethods { - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] +#if XAMARINMAC2_0 + private const string _dllName = "NonExistingLibrary"; +#else + private const string _dllName = "__Internal"; +#endif + + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Initialize(CK_C_INITIALIZE_ARGS initArgs); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Finalize(IntPtr reserved); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetInfo(ref CK_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetFunctionList(out IntPtr functionList); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetSlotList([MarshalAs(UnmanagedType.U1)] bool tokenPresent, ulong[] slotList, ref ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetSlotInfo(ulong slotId, ref CK_SLOT_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetTokenInfo(ulong slotId, ref CK_TOKEN_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetMechanismList(ulong slotId, ulong[] mechanismList, ref ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetMechanismInfo(ulong slotId, ulong type, ref CK_MECHANISM_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_InitToken(ulong slotId, byte[] pin, ulong pinLen, byte[] label); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_InitPIN(ulong session, byte[] pin, ulong pinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SetPIN(ulong session, byte[] oldPin, ulong oldPinLen, byte[] newPin, ulong newPinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_OpenSession(ulong slotId, ulong flags, IntPtr application, IntPtr notify, ref ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CloseSession(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CloseAllSessions(ulong slotId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetSessionInfo(ulong session, ref CK_SESSION_INFO info); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetOperationState(ulong session, byte[] operationState, ref ulong operationStateLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SetOperationState(ulong session, byte[] operationState, ulong operationStateLen, ulong encryptionKey, ulong authenticationKey); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Login(ulong session, ulong userType, byte[] pin, ulong pinLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Logout(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CreateObject(ulong session, CK_ATTRIBUTE[] template, ulong count, ref ulong objectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CopyObject(ulong session, ulong objectId, CK_ATTRIBUTE[] template, ulong count, ref ulong newObjectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DestroyObject(ulong session, ulong objectId); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetObjectSize(ulong session, ulong objectId, ref ulong size); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetAttributeValue(ulong session, ulong objectId, [In, Out] CK_ATTRIBUTE[] template, ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SetAttributeValue(ulong session, ulong objectId, CK_ATTRIBUTE[] template, ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_FindObjectsInit(ulong session, CK_ATTRIBUTE[] template, ulong count); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_FindObjects(ulong session, ulong[] objectId, ulong maxObjectCount, ref ulong objectCount); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_FindObjectsFinal(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_EncryptInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Encrypt(ulong session, byte[] data, ulong dataLen, byte[] encryptedData, ref ulong encryptedDataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_EncryptUpdate(ulong session, byte[] part, ulong partLen, byte[] encryptedPart, ref ulong encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_EncryptFinal(ulong session, byte[] lastEncryptedPart, ref ulong lastEncryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Decrypt(ulong session, byte[] encryptedData, ulong encryptedDataLen, byte[] data, ref ulong dataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptUpdate(ulong session, byte[] encryptedPart, ulong encryptedPartLen, byte[] part, ref ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptFinal(ulong session, byte[] lastPart, ref ulong lastPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestInit(ulong session, ref CK_MECHANISM mechanism); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Digest(ulong session, byte[] data, ulong dataLen, byte[] digest, ref ulong digestLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestUpdate(ulong session, byte[] part, ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestKey(ulong session, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestFinal(ulong session, byte[] digest, ref ulong digestLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Sign(ulong session, byte[] data, ulong dataLen, byte[] signature, ref ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignUpdate(ulong session, byte[] part, ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignFinal(ulong session, byte[] signature, ref ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignRecoverInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignRecover(ulong session, byte[] data, ulong dataLen, byte[] signature, ref ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_Verify(ulong session, byte[] data, ulong dataLen, byte[] signature, ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyUpdate(ulong session, byte[] part, ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyFinal(ulong session, byte[] signature, ulong signatureLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyRecoverInit(ulong session, ref CK_MECHANISM mechanism, ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_VerifyRecover(ulong session, byte[] signature, ulong signatureLen, byte[] data, ref ulong dataLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DigestEncryptUpdate(ulong session, byte[] part, ulong partLen, byte[] encryptedPart, ref ulong encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptDigestUpdate(ulong session, byte[] encryptedPart, ulong encryptedPartLen, byte[] part, ref ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SignEncryptUpdate(ulong session, byte[] part, ulong partLen, byte[] encryptedPart, ref ulong encryptedPartLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DecryptVerifyUpdate(ulong session, byte[] encryptedPart, ulong encryptedPartLen, byte[] part, ref ulong partLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GenerateKey(ulong session, ref CK_MECHANISM mechanism, CK_ATTRIBUTE[] template, ulong count, ref ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GenerateKeyPair(ulong session, ref CK_MECHANISM mechanism, CK_ATTRIBUTE[] publicKeyTemplate, ulong publicKeyAttributeCount, CK_ATTRIBUTE[] privateKeyTemplate, ulong privateKeyAttributeCount, ref ulong publicKey, ref ulong privateKey); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_WrapKey(ulong session, ref CK_MECHANISM mechanism, ulong wrappingKey, ulong key, byte[] wrappedKey, ref ulong wrappedKeyLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_UnwrapKey(ulong session, ref CK_MECHANISM mechanism, ulong unwrappingKey, byte[] wrappedKey, ulong wrappedKeyLen, CK_ATTRIBUTE[] template, ulong attributeCount, ref ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_DeriveKey(ulong session, ref CK_MECHANISM mechanism, ulong baseKey, CK_ATTRIBUTE[] template, ulong attributeCount, ref ulong key); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_SeedRandom(ulong session, byte[] seed, ulong seedLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GenerateRandom(ulong session, byte[] randomData, ulong randomLen); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetFunctionStatus(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_CancelFunction(ulong session); - [DllImport("__Internal", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_WaitForSlotEvent(ulong flags, ref ulong slot, IntPtr reserved); } } diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs index a8b1234a..efb56909 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs @@ -225,10 +225,16 @@ private static class Delegates /// private static class NativeMethods { - [DllImport("__Internal", EntryPoint = "C_GetUnmanagedStructSizeList", CallingConvention = CallingConvention.Cdecl)] +#if XAMARINMAC2_0 + private const string _dllName = "NonExistingLibrary"; +#else + private const string _dllName = "__Internal"; +#endif + + [DllImport(_dllName, EntryPoint = "C_GetUnmanagedStructSizeList", CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_GetUnmanagedStructSizeList4x(uint[] sizeList, ref uint count); - [DllImport("__Internal", EntryPoint = "C_GetUnmanagedStructSizeList", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, EntryPoint = "C_GetUnmanagedStructSizeList", CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_GetUnmanagedStructSizeList8x(ulong[] sizeList, ref ulong count); } diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs index 5dad7471..77e5cca6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs @@ -147,10 +147,16 @@ private static class Delegates /// private static class NativeMethods { - [DllImport("__Internal", EntryPoint = "C_EjectToken", CallingConvention = CallingConvention.Cdecl)] +#if XAMARINMAC2_0 + private const string _dllName = "NonExistingLibrary"; +#else + private const string _dllName = "__Internal"; +#endif + + [DllImport(_dllName, EntryPoint = "C_EjectToken", CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_EjectToken4x(uint slotId); - [DllImport("__Internal", EntryPoint = "C_EjectToken", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, EntryPoint = "C_EjectToken", CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_EjectToken8x(ulong slotId); } diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs index fd6882ef..3f2937bc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs @@ -147,10 +147,16 @@ private static class Delegates /// private static class NativeMethods { - [DllImport("__Internal", EntryPoint = "C_InteractiveLogin", CallingConvention = CallingConvention.Cdecl)] +#if XAMARINMAC2_0 + private const string _dllName = "NonExistingLibrary"; +#else + private const string _dllName = "__Internal"; +#endif + + [DllImport(_dllName, EntryPoint = "C_InteractiveLogin", CallingConvention = CallingConvention.Cdecl)] internal static extern uint C_InteractiveLogin4x(uint session); - [DllImport("__Internal", EntryPoint = "C_InteractiveLogin", CallingConvention = CallingConvention.Cdecl)] + [DllImport(_dllName, EntryPoint = "C_InteractiveLogin", CallingConvention = CallingConvention.Cdecl)] internal static extern ulong C_InteractiveLogin8x(ulong session); } From eafb13232d643ba9c302555f6102c7b8bafdbca8 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Wed, 23 Jan 2019 22:48:52 +0100 Subject: [PATCH 11/27] Updated year in copyrights --- build/Pkcs11Interop.nuspec | 2 +- doc/doxygen/footer.html | 2 +- .../Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs | 2 +- src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs | 2 +- .../Pkcs11Interop/Common/AttributeValueException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs | 2 +- .../Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs | 2 +- .../Pkcs11Interop/Common/LibraryArchitectureException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs | 2 +- .../Pkcs11Interop/Common/UnsupportedPlatformException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs | 2 +- .../HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkAesCtrParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkAesCtrParams.cs | 2 +- .../MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkAesCtrParams.cs | 2 +- .../MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkAesCtrParams.cs | 2 +- .../MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkAesCtrParams.cs | 2 +- .../MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs | 2 +- .../MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs | 2 +- .../MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs | 2 +- .../MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs | 2 +- .../MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs | 2 +- .../MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs | 2 +- .../MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs | 2 +- .../MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs | 2 +- .../MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs | 2 +- .../MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs | 2 +- .../MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs | 2 +- .../MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs | 2 +- .../MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs | 2 +- .../MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs | 2 +- .../MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs | 2 +- .../MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs | 2 +- .../MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs | 2 +- .../MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs | 2 +- .../MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs | 2 +- .../MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs | 2 +- .../MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs | 2 +- .../Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs | 2 +- .../Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs | 2 +- .../HighLevelAPI/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs | 2 +- .../HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs | 2 +- .../HighLevelAPI/_29_SlotClassExtensionTest.cs | 2 +- .../HighLevelAPI/_30_SessionClassExtensionTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI40/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI40/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs | 2 +- .../HighLevelAPI40/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs | 2 +- .../HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs | 2 +- .../HighLevelAPI40/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs | 2 +- .../HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI40/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI41/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI41/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs | 2 +- .../HighLevelAPI41/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs | 2 +- .../HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs | 2 +- .../HighLevelAPI41/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs | 2 +- .../HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI41/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI80/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI80/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs | 2 +- .../HighLevelAPI80/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs | 2 +- .../HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs | 2 +- .../HighLevelAPI80/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs | 2 +- .../HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI80/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI81/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI81/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs | 2 +- .../HighLevelAPI81/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs | 2 +- .../HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs | 2 +- .../HighLevelAPI81/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs | 2 +- .../HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI81/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs | 2 +- .../LowLevelAPI40/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs | 2 +- .../LowLevelAPI40/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs | 2 +- .../LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs | 2 +- .../LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs | 2 +- .../LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs | 2 +- .../LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs | 2 +- .../LowLevelAPI40/_20_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs | 2 +- .../LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs | 2 +- .../LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs | 2 +- .../LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs | 2 +- .../LowLevelAPI41/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs | 2 +- .../LowLevelAPI41/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs | 2 +- .../LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs | 2 +- .../LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs | 2 +- .../LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs | 2 +- .../LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs | 2 +- .../LowLevelAPI41/_20_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs | 2 +- .../LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs | 2 +- .../LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs | 2 +- .../LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs | 2 +- .../LowLevelAPI80/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs | 2 +- .../LowLevelAPI80/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs | 2 +- .../LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs | 2 +- .../LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs | 2 +- .../LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs | 2 +- .../LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs | 2 +- .../LowLevelAPI80/_20_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs | 2 +- .../LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs | 2 +- .../LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs | 2 +- .../LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs | 2 +- .../LowLevelAPI81/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs | 2 +- .../LowLevelAPI81/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs | 2 +- .../LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs | 2 +- .../LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs | 2 +- .../LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs | 2 +- .../LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs | 2 +- .../LowLevelAPI81/_20_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs | 2 +- .../LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs | 2 +- .../LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs | 2 +- .../LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs | 2 +- 989 files changed, 989 insertions(+), 989 deletions(-) diff --git a/build/Pkcs11Interop.nuspec b/build/Pkcs11Interop.nuspec index c0c12868..ffde1b7f 100644 --- a/build/Pkcs11Interop.nuspec +++ b/build/Pkcs11Interop.nuspec @@ -12,7 +12,7 @@ https://www.pkcs11interop.net/nuget/pkcs11interop-icon-64x64.png Managed .NET wrapper for unmanaged PKCS#11 libraries - Copyright 2012-2017 The Pkcs11Interop Project + Copyright 2012-2019 The Pkcs11Interop Project pkcs pkcs11 security crypto cryptography smartcard hsm diff --git a/doc/doxygen/footer.html b/doc/doxygen/footer.html index 3bc519f0..3d8a453b 100644 --- a/doc/doxygen/footer.html +++ b/doc/doxygen/footer.html @@ -1,7 +1,7 @@ diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs index 1da8aa11..06feab85 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs index faded8b4..012bb1f7 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs index 82cbecc5..add3f211 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs index 6763d9f7..b054f07a 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs index caaa4eaf..9de06b15 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs index ee3a21a4..714874e2 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs index 39624045..c677d2c6 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs @@ -6,7 +6,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs index 5034eb2a..68ef1c48 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -6,7 +6,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs index df6c565e..da55d421 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs index 3623085c..1d6714c5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs index a0db1cf7..1ae86dcd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs index f7e35a2e..1a030894 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs index 33927e27..e6685b7e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs index 6b47dc5c..dac74230 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs index 9c1e9b6d..8214a9fd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs index bfe08383..860a1581 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs index 7e28ad53..2791a6a5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs index 8a4224b1..bfae06b1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs index e199dfb9..6721e85f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs index cc3055f4..3e804f99 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs index 044ec13a..6593f009 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs index b76e8bf0..ca8e6936 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs index 612a8dc9..de3fd9af 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs index fcc16693..dc5fb556 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs index d70f601e..28ad1038 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs index 4856355c..b5e7d220 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs index 9c1bd587..aa34eb7d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs index 8677203f..6c9f3593 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs index 5640a27b..92a453e9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs index 66a40138..0255a26d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/LibraryArchitectureException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/LibraryArchitectureException.cs index 6297cb1d..4d179580 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/LibraryArchitectureException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/LibraryArchitectureException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs index 4b614ec0..4a24f1f6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs index 1ec9a378..009bc854 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs index 832409e2..266cc450 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs index cc6e2e9d..b74f7de2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs index 68c54d51..1c465d7f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs index 38908080..129cde91 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs index 8a70898e..3a95871e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs index 59a52361..eadbf196 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs index 66f17159..b212ee50 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs index d3405f83..34055dea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs index 4e00b734..33b74a6d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs index 8e1cec0c..bdbc7c5d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs index 40c30a7a..90e7faad 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnsupportedPlatformException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnsupportedPlatformException.cs index af3ee06c..c99e6a20 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnsupportedPlatformException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnsupportedPlatformException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs index 3fae847a..eadd1392 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs index 1ea99b63..6d5e76c6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs index d6033275..dd1e5a39 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs index 8a9f00ec..dc46a2c6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs index 131a8b5a..0cf7b6a4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs index 13a7ddd6..56dd6617 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCtrParams.cs index ae170b9c..9aba794d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs index 98db8c2e..a6ff4041 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index 915f832e..9b864add 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs index 1b37771f..d99080dc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs index e9be61b4..dfe46a37 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCmsSigParams.cs index c57c5bd9..fd8de02f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs index 1a3b865d..a124f852 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs index f030f098..b4181bf5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs index 8c03a640..80081365 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs index 5b0374b7..6c63c3b3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs index c3bf83cb..09baee29 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs index b3c251ec..18a1a576 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkExtractParams.cs index dbe680b2..4b7093fc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs index b2fd8bbb..95b075bf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs index 5beba3ed..1b81dc86 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs index 73c9eb88..563d0fc8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs index 68554792..67c384a3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs index b4bbf3d8..00016c9c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs index 0f6e0e28..4e2ddf9d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs index d803fad5..54dd1348 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkMacGeneralParams.cs index 585918a8..daf606c9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs index fd27d8ba..83149fd0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs index 022ea7f6..d46f5b3d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs index f8e986c6..cecade17 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs index f5f29c6e..e2580a30 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs index 2d0952bc..61783ff4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs index 2fe0c0f8..fd6c948e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2CbcParams.cs index 9c88c446..b7fb80dc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs index b21d2182..ebc5e6d3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs index 88a8dbc0..0f03de41 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5CbcParams.cs index 1dc7e830..c879849c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs index 507075a9..725cad5f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs index 6f4c03c0..a246200b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs index 135ccc47..1cdf013b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs index 72cae686..ac318122 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs index 1b6acb1c..50dcf549 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs index ad19a6fa..b7babbea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs index 3060d6c7..3aa59539 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs index 3e7af1db..887ba1ae 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs index dc9a3a1d..d2fb0a09 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs index f23f3180..e90b84ec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index 5c6178cd..7486206e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3RandomData.cs index 615e8362..6934bbd7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs index 5a16176e..522d4e26 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12MasterKeyDeriveParams.cs index a38c53ba..8e41b38e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsKdfParams.cs index d34e0690..cceec908 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsMacParams.cs index 55255ddc..825afbbd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsPrfParams.cs index 490055a6..54652a10 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs index 244f2a85..756a967d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs index a98c0402..674e9893 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs index 797f94cb..2aeb8877 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index 0a2b5dc5..b638cfc3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs index a44a7cda..af8a2d82 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsRandomData.cs index 7df9f6c6..18bc356e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs index eaf6f454..47e79d5f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs index e9dce666..3e58a0da 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs index f1f10b1f..be1c6aa1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs index 50ebd733..ac07e8c0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs index 2e8417c1..f6a35441 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs index 3a43bac2..c81bde3a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs index ed6d7cea..feae4920 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs index efe1a117..54d76e44 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs index 67486b0a..4ce78ab3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs index 4326ba18..eb088b66 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs index 8d0a7a3d..ef28630b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs index 4a4f4621..27de383d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs index e65ac9a5..6e47ea95 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs index acf9ea03..2b148820 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs index 27946f31..b8ae61cc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs index 5522b10c..e2e63f88 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs index f002959c..75979496 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs index 6fb71e5f..53622943 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs index 8af4a353..43d5afc8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs index cdf22733..78875299 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCtrParams.cs index fc38e884..f2bc4d69 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAriaCbcEncryptDataParams.cs index 45522b54..33b59046 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index 651f5016..a3b6813e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs index be1c6477..1aaa329a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs index 05afeae9..187d7b96 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCmsSigParams.cs index 2f967536..f0f449c7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs index 0798481c..bc325838 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs index c01479a9..b20585fd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs index c78a81a8..db657f50 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs index 6aa20354..2964ad60 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs index d1d40a74..9704a16c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs index a1995a6a..dedec557 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkExtractParams.cs index 17d3d407..103f282f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs index 88d715ed..a775f93d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs index c8524849..f893c9c1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs index fb32c11b..62fdaadc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs index 263b3c43..f28c6dca 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs index b455bf9f..413d0db5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs index b872e373..a16c6f8e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs index 518ead9e..4a1878cb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs index 0e334f54..6d7e94e2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs index 6e5aea02..b2686d55 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs index 57bd917a..88173fbc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs index 8cc8f9ba..caf67fdd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs index 96520590..48f9200a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs index fc852bd4..2c6d186d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs index a7b2c68e..178bee34 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs index ce7e8648..15c93749 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs index 0bd9d4ae..42534346 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs index d3654140..ccf96df2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs index 95629478..a74f0449 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs index f0c360c8..bb03a5d2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs index 361af16f..b6dcfc46 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs index df12af31..460061a5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs index c0d320f1..93e1199c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs index 5c8b982b..74964911 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSeedCbcEncryptDataParams.cs index 86575b7f..04f0b11a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackPrivateWrapParams.cs index 6bd5ee67..aaed1a05 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs index a8bff159..3d74e60f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs index cd0ce232..6700d722 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs index 44554ff7..8e033c72 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index 454bcb54..e6c5db9b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs index eda47f90..e50462b0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs index 412014a3..a8efe073 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12MasterKeyDeriveParams.cs index c8c69139..5c66d5ca 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs index 4da58d1a..8810b12a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsMacParams.cs index 58287c99..2f3d2e91 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs index c9f2b2dc..e5ced285 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs index b08b9fbd..ff8fc204 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs index 768900e4..c4ab8374 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs index f0b3899a..f2589ecd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index a615435d..b21a4020 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs index b894f021..d2d84e2d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs index 4c1f4324..8863899f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs index 0acf5856..80f12894 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs index 043a3b0c..286c1cb2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs index 67ac1c5f..ed7b7b41 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs index 6f3ef4cc..3df931ce 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs index 3b8bc67a..29403f4b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs index e7b7c99a..7476b10e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs index ad4b58d9..04e6d5dd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs index 48e99fb1..f9305dba 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs index 7885fe95..42dde6d0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs index 1fbe3954..a00c7bd6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs index eb9fc95e..10d2dced 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs index 92d58fce..ae40d0b6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs index 10504d79..272e5398 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs index 00714950..c8250857 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs index 73192587..ba0e19f3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs index aade3350..65ce6a36 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs index 394d598c..b9e6c3d2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs index 34263d9d..5087ab7f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs index 22eff7c5..eefc0789 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs index 92c9c888..fc1e6dbd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCtrParams.cs index d86719c4..ea67fd7d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAriaCbcEncryptDataParams.cs index fd4062a3..1400b138 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index 2a933ff9..12ddffbf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs index 4cb21827..38ee0588 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs index 9419a604..3ed4cf86 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCmsSigParams.cs index 68aebc92..56acbe83 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs index a73207cf..8dd7d8d8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs index f2a39442..b9526606 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs index 697720d1..0a1f40f5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs index 633e9869..b8141e99 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs index b200f1fd..12d2a99b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs index 2078adba..6bcb1d0d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkExtractParams.cs index 40a12294..b7d08732 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs index 03005675..9a6830a7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs index 8431a50c..0c15e151 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs index ada49a62..47c2f9a6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs index 45e960f1..b3c23b7a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs index 78050fbc..c5164cba 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs index b2c09cc6..087b0b4c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs index 4571e204..c7a4c87b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs index a3a860e6..ed6014ec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs index c3bd7c89..85476e3e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs index 0b852a03..42aa282b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs index 92114d56..60e0f267 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs index 7d794dad..6216d3c5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs index 6ad8e847..0dc78f8f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs index 2069f508..23757e15 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs index bb0dc74d..3c1f23ae 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs index c61bd7f6..3bb3d406 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs index 46660cba..3b9d3a3c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs index f5edc867..550debc6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs index 296abf94..8fb6ff04 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs index e18b2201..f4e7b057 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs index e5121f87..9fa8bf18 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs index 18ab10db..15160601 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs index 1a15848b..8ee0d5db 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSeedCbcEncryptDataParams.cs index c2dc92aa..899b7804 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackPrivateWrapParams.cs index 8fba77ca..ea6beab8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs index aee39ba1..e9dc435c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs index fbf09426..178a5147 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs index 4bb40678..e80f6e67 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index ddd0d30d..2a31dec5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs index c0d37891..4943a858 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs index 9062c3bf..8c5bd3d9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12MasterKeyDeriveParams.cs index fc68222b..ef8a500b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs index b63dd77e..0dc5b222 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsMacParams.cs index 820f6033..37e79bc2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs index 33c16486..e67c0050 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs index e241d027..b36ff2b7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs index 461a0b4b..3e680908 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs index 7cd0d711..8d7ce5e7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index 9c97b301..e0e0bd5a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs index daf5bd34..4363ead2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs index 8e74848c..b35c6ff7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs index c99b3758..ecdc222c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs index 34ca6c4f..05836811 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs index cfae7056..87034e6e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs index 683d57aa..e60e845a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs index 302c4752..ec75b191 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs index 89a6bc96..3c5adac7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs index 2bddfd4f..093166f5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs index cfc7c62f..d4dfcf21 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs index 8938d3c5..2319a3d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs index 62bf63ff..faf4968e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs index 3bcdad8b..64e97772 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs index dfb6784c..73502d16 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs index fe0845ed..dfa46d86 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs index 4f9afd32..0908248b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs index 43f4958f..6bd690d0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs index 0745d9c7..59bb72dc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs index dff7b987..f7054468 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs index dc073850..1a86d8c8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs index 3f8d5365..3e31d576 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs index 18868f8b..0bf30b3c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCtrParams.cs index 5f5fea9e..bb3b31cb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAriaCbcEncryptDataParams.cs index 8eab30b0..8ba9c096 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index e6b515e6..df63537b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs index 826fa809..d5205ba3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs index 40f230e4..b5bca9d0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCmsSigParams.cs index 50d941ea..c16a17be 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs index bb0d3d09..233012af 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs index 3ca9c7df..bcc872e1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs index 5181dcf1..8cdcd306 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs index 2bb9cf01..3c3bc7ad 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs index db222a10..d7c4534a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs index db8559cc..0e571748 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkExtractParams.cs index 5bbb2193..f158b8a3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs index 214cfd82..2c901a12 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs index 85d9eb9e..55fba158 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs index d9ac37da..93f197ba 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs index fe6e127c..06b04a91 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs index c58c4963..203ffc1c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs index 1064e87a..8d5f7445 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs index 42a333e6..425e6b8f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs index 8fc7ba26..e2bd1b07 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs index 3dd8b4c8..87cbbe2c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs index ac646552..d287c498 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs index fa756a9d..85e29741 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs index a197c6c0..dcc2af76 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs index 6afc600b..a9ca4da1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs index 3c302ee3..4f2b1dc4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs index e056898d..94af6ad9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs index 381ff4d5..f436dfec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs index 2ed35cdf..a625a46c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs index 258c23af..f13529e0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs index 06accf45..e3ff1f4d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs index fc175f3c..7fa4b92a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs index 1045369f..b70e4835 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs index 11c346cb..8ff722fe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs index e8c7f765..88e8fe58 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSeedCbcEncryptDataParams.cs index 95bfb989..30970bb1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackPrivateWrapParams.cs index b7dcb0dc..3b0b23bb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs index 643de473..7db71611 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs index c2e6ced7..7925d94f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs index b0990ee2..ae0c29f7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index 91097870..dfc97ed8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs index cb57de56..9b18d2d7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs index b50c4650..285e6679 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12MasterKeyDeriveParams.cs index 6cfb203d..1db0f5a2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs index ed3298bd..eb4cf970 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsMacParams.cs index 3b744fa0..c70ab267 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs index f3fa6da2..03a269ea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs index e774673d..8386af45 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs index 962b357d..544eb4c2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs index 6d10308a..1d9a6796 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index 10638224..bba3c948 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs index 40aa7ea8..d9629775 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs index 61bf991e..c8b3b163 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs index 69734546..822cca31 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs index 6ab96afd..5bbf4c0d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs index 27e466df..c7639808 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs index 8db5a25d..c55b464d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs index 087ea1ff..33bffb85 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs index fc11c5a2..6128ad91 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs index f9ff1c7a..1fd75e64 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs index 8ae4a3c7..65654b86 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs index cabdc276..d53821fd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs index 80050bbe..a620ec17 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs index 4b7e1dd1..c42a8978 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs index 9cac492e..b2c5990e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs index 48d85ed5..fe8e8343 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs index 07346543..2c17f131 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs index c24b24c6..ec96687f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs index 570ff570..fa744f68 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs index 6d4d8295..4ce48322 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs index b734c699..cac01200 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs index 323ba8ff..289921e0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs index 88f5f458..08348976 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCtrParams.cs index 37dfd15d..2e10bc96 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAriaCbcEncryptDataParams.cs index 9ca2ae01..93cd392f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index 1c4481ee..c04d4d6c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs index a68d8c44..494545c3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs index 6312d5cb..7a977daa 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCmsSigParams.cs index a0fdba62..0280df07 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs index 23473f7f..55ef8891 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs index 71c05db3..6d42c138 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs index d8c1243a..8c0b9692 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs index 9f0c1e6b..d29f21f7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs index e7b3ceea..9d3a3e8f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs index 9833dbc9..da0efd27 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkExtractParams.cs index cc55c1cf..05327465 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs index 5caeed1f..ab663ad4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs index 7adf6be3..4cd121b9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs index 26e27251..d3e13df8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs index 5226da71..61865721 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs index fd63bbac..be4494c8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs index 2457d3ad..daa6e5f7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs index 7a91b166..f76d7940 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs index d6ddd352..afc8df45 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs index 860576bf..ba3bfa9f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs index c2d8226d..93c699d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs index 37b35ce5..9142916d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs index 06e727d9..fad50228 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs index 51897223..70ed2657 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs index b58170f0..046f2d87 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs index 15bff4a9..f5ab076d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs index fe06711c..130760f2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs index 0d47f930..6787eb7d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs index 2eb2f5f0..f3924311 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs index 095c8f06..d957c277 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs index 5fc39a61..ecabd363 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs index e41b3119..a1015381 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs index 683ab0fd..20c95b59 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs index ca7f6c8f..e545a1f7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSeedCbcEncryptDataParams.cs index 53eec0f8..ef711af7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackPrivateWrapParams.cs index 4cb22c68..1a9a96c3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs index 5b7c6274..d1a36b3b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs index e4d76bd1..038e118b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs index 453f90d2..8d22758a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index bd284a81..b5941e2f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs index 6965b383..99b29a81 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs index 537f61b6..b53dc713 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12MasterKeyDeriveParams.cs index 17fb61b9..c71575e8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs index 93c8d5e5..040735a2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsMacParams.cs index bcdc6f6b..e10866f9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs index 7736f76b..ced21d9d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs index c090cd80..c1635094 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs index 38babbe3..ed7d29d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs index 7dca317f..da9704a8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index 5166ff38..082207d1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs index 72f55be3..eab55f34 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs index b7f1bf96..c41412fe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs index 3bfb0f7c..70debd16 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs index 8608f588..b901f8a7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs index 4626187d..35f78b82 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs index 3968e0a4..77e9d483 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs index ac66bbc5..4fcbd67e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs index ec26035f..91364baf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs index da35a376..1366e30f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs index f26d10f1..d364066f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs index 39a70656..42f55a66 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs index 4bf10ba6..5edc23f6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs index c000b49c..81afc98f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs index 407042eb..98b1ae6b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs index a9809f90..4f62e43a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs index b46da488..e2926709 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs index 94f3c8f5..5ae02e0a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs index 7e9a302a..a47bffa9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs index 5eea4f5d..aa8ea56d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs index 1b118a16..802fbcb6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs index 484c91d1..f7403eb9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs index f31acf15..d675aecc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs index c2aba7c9..ef24b74a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs index 45bde2f1..04e296e7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs index 184a3ec4..078cc155 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs index 1d9116d9..97a27216 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs index 3bb8a525..23da6af8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs index df37ab24..98095273 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs index 64bf2bc8..308973c8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs index 3dcf58cc..90aab190 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs index 73005528..024463d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs index fd77c868..449b53b7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs index a8286b49..d2d152c4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs index 7a57c19c..81b0ff25 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs index 9db1581e..aff7a119 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs index 121fcfea..06fb9259 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs index 90570eff..01af570f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs index 3c86e2cf..44ec3889 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs index ff27d3a9..691259a1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs index 155fef42..3f4ad1e8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs index 8e73a656..9a5d12ed 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs index 9e2d2f4e..f85464d3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs index afcc3e17..6ea3a607 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs index f812d4a6..c7ffd3e9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs index 39a060ed..17273331 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs index 100beab3..7aa86210 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs index 8d29e93f..7d915b82 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs index 8f826437..ac09772c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs index 5262518e..f0d4ee2c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs index f9d8a7cb..7619916a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs index 72d34c58..f3ca41fd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs index 45d33979..70d4e31b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs index f76d4b8a..20c1e35c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs index 1009c3df..868f88df 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs index eae75af3..11a00406 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs index 3a267450..e9484e57 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs index c622aa45..f6d4779b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs index aed3287c..b0c1f0c6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs index 6e4a8af3..3b220f2e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs index 265a8279..c1ba5a0e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs index 42bb9de5..daf5dd10 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs index 55d829ec..6f601167 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs index 618aeda7..869f88f9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs index f678ed08..2d12c30e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs index 805f0e20..87d6f4f3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs index a47abfe2..9c91a5eb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs index 56be3c6a..a7847a1a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs index 2e24cd5d..0dd5c61e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs index 51404a68..9878b580 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs index 830166b7..2385bdc1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs index 4a9ab515..c153602d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs index ac2b905a..bef43e47 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs index ee6c22a1..d798d0aa 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs index 9fdf0694..5a05f67d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs index 75eaaa71..896864a8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs index 509169a6..535db5ce 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs index 3ee8d35d..2b145f13 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs index d26343e6..1a9879df 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs index 6b50ae99..5d4df7d7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs index 467cb66e..bae794e0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs index 03741959..507f2548 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs index ee9f9c73..89707102 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs index 83dc7829..2de693fc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs index e64c5918..b7f6e706 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs index 75835bb0..588f6c69 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs index a3a20d32..ebbc8e44 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs index 7eea93cf..737e2059 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs index e4f8576a..57862e0b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs index e88320ae..8767b4ef 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs index 18fa3e03..c764ccfb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs index 14a5b92c..27ffb698 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs index fb852d23..d850f77d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs index 0fad3ab3..3d0f98b8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs index 198a75ae..9c57783d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs index f8cc0852..aa7ff406 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs index 91a3b805..65973249 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs index c69f3dd8..4eda2fca 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs index 03c64242..e562e610 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs index 6b69ed82..583663c6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs index 910b69be..a0de41f8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs index b3d27006..c44e7d25 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs index 145083ec..d2350d65 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs index 1d2e0060..14bf70a0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs index c055e9fe..ec2c833d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs index 65fc2c01..048ba052 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs index c4ebaf85..e21ed010 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs index 59b2fef8..70c8a105 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs index df07a51f..c2335fd7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs index cfa3dc8f..bc729ff6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs index 6a52f084..f5c88085 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs index 7cacb0b9..1f077bab 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs index ddc06c35..f5b2fd44 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs index 00f84626..9114c671 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs index 7d0481ec..9f654745 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs index 190318ea..7fe2878f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs index 2f40f70b..37521180 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs index 92f98466..68d65545 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs index 0e7560f9..f3f66eee 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs index fda7ea68..2e1b32ba 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs index 7161ed5a..57c4228f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs index c0ffabee..ea3bdcc2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs index a81cad5d..903832bc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs index 9a759b71..159dcb79 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs index bd31e95c..314c0f44 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs index 844cd144..190218fd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs index 0c010e83..7c753fb4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs index 49d6f81e..c6f08253 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs index 71de2328..c205d5e1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs index 2a890781..5fe29a39 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs index 3643fadf..d50e10e5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs index 853efd99..29f7db6e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs index 23fd7816..7699f7a8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs index 3fd16f7b..553b548b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs index d52fb044..66901739 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs index 6a006e74..c9a3deae 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs index d18c2ade..e795829c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs index f77a4e0b..a843fd60 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs index d736a61e..d73c9fc2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs index a5924076..2a8d08dd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs index e0b60e56..084652f6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs index ea214943..58f15352 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs index f426f044..9dcd5ac4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs index ce7741ca..973ed10c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs index ab121709..874ac39b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs index 0830064c..d8294ea5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs index 2491083e..22c10110 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs index a591091f..71c15b90 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs index ebc0f0a9..8c39c6bd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs index 2ec9603a..e70bef7e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs index a7b2c23a..dc0eefe5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs index f6677e4c..3c635754 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs index 2e30d0fe..5a4239b2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs index 24b5a693..5ba9cde5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs index c5b3988d..c714fbf8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs index 8949da05..3ed158e4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs index eaf91475..ccf7b959 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs index 2e4913a6..7a4da21f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs index 516cec8b..d22a6bfd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs index cc769ff0..e9ad6e4b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs index 43fda87b..52473fc7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs index c8bed2f2..569d6dea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs index 089a7bcf..dbf9e95e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs index ba87ae8d..1ee2205b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs index 0817ef6d..e430ef77 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs index 8788a1c2..36714f46 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs index de93d6c6..0c0fbd41 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs index 56edcfa0..3f9c9fa5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs index 351148e9..6bfd92c5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs index 0c77de62..bed8a3ba 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs index 1cbe1668..dd1314f9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs index 2a99cc17..424c6172 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs index fe3aeadd..5afb1b75 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs index 0bdb59f2..78da0a5a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs index 108570d5..cb26ccb4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs index e6e00cf9..6849eae7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs index 462611d9..ae733c79 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs index 92b42f7a..c06a6d1b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs index 2eb03e93..673b5e38 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs index 3e0250dd..8ba0b5ed 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs index 381a0338..fc4e92f4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs index 17c56c36..2de38f40 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs index e188bcfe..0abb7287 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs index 5fd94f42..17c2f807 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs index 8e024e82..5b3c835d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs index a733d34d..216e1cef 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs index 44eae980..f7bc09c3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs index ee4f5c6a..fda44f4e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs index e95ca304..630ccbd2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs index b290c390..4b12ca3d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs index 0b83287a..e453787b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs index 45d32c0b..09d4e3eb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs index 713f47ea..418d2016 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs index be345ce2..f0f38595 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs index d3ea9033..c67c344c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs index fdee2e0d..0f69591a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs index b742d427..168ae965 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs index 1146944f..3f7e7952 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs index cc86d39c..5f916349 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs index 17c2559b..3bc6557a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs index fa881832..7ab5fdcd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs index 51415416..9181dbbc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs index 8a516835..349c6538 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs index 38649f5a..bf29bc27 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs index e25e4de2..49c71c57 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs index 9b317ebb..2a1e05d0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs index 174c6792..f8daa81b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs index af7c29a3..3602868e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs index 7bb45597..d3348f88 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs index a41626a3..732d38da 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs index 7b536742..854afefa 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs index d0fa82ac..f0eb9b82 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs index d39ec129..b7ca1d29 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs index 587f60f4..d65f371a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs index 1ed8165c..77913b02 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs index 5c32d4b0..114c9eb7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs index eded0ab3..faca995a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs index 937e0aff..aaedf86f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs index f53dc17e..8d65a36b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs index a985f0d5..a8fa5114 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs index b0fed1b6..b58aa0b6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs index b5e72e47..676e5ae9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs index 6153a24b..8e1e3dd6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs index 3cfb2bf5..717efa48 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs index 57387ba6..c44456d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs index c3700b7b..b13b5a97 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs index 919ee5cd..0fe409d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs index 5d7694ee..3ba507b7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs index 346a90d1..8c376b10 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs index c68c2148..46cda9db 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs index 0953f074..f8e062a2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs index 9f7e2eea..2be026d3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs index 9864efc3..a5e4874a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs index db53dda6..a3e165c1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs index b9faf894..41c1262c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs index 2736dca1..73e89c21 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs index b1d8e4ab..05330ffb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs index 95b93e85..d7a56522 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs index e41dd370..96af8741 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs index 4a89679e..19fc139e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs index 4bef395a..04204dc0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs index 87561201..8b40f0d2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs index 701d85b0..c1fc2240 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs index f465c9cc..19ac068a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs index d3d84648..a0959b74 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs index 2f8d7cf6..169569cc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs index 73e78748..e9c1cf9e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs index 7bb8c9b0..1b41a763 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs index ea161978..96ae1d13 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs index 3d44a6d3..8682876f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs index 6b9d10f6..354626db 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs index 299a51da..8e1faa52 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs index 1cd05557..0b82b47b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs index 2f8310a9..e6c5ee50 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs index ad12987e..9e3d2d22 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs index 71fcc73e..65722dd3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs index cde6960a..3e7d87e0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs index 87e6c46d..53892e42 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs index 059e9c05..b3946035 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs index 61370801..7bf6dc58 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs index 8f5322b0..2590ef31 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs index cb204279..ef27d9ca 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs index 3a1d816c..7b3498e5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs index 91c2f005..ffd6e012 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs index 1221a31f..9fd4ceae 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs index 54e11d9c..6472424f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs index 5f52c375..192a105a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs index 93779d71..40d822d9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs index 1574053f..7d536e66 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs index 9138b427..183ddba9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs index 0d54e609..81c19da7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs index f5adad46..506e339c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs index 059b3b6d..6d6f1e58 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs index b6112497..e91d6702 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs index a0b11b61..28ebe74d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs index 22281f35..cb772906 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs index ebd7fae2..34107c8c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs index 997cabe1..ba1f65a5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs index 5ad7b419..43089e6d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs index 96cd1adc..cdad4722 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs index 8ea72693..09a22696 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs index 317d7b7a..4448b19f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs index 4945e3c4..f4470c9d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs index 41385166..a49c5fd1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs index c15c3c0e..92a68ad5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs index ca616a8d..11f4bc36 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs index 70d16034..f788c836 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs index eef6a6a1..7fac16e6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs index 74b00a7f..1e2f7b7b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs index f8dc5ca6..63ce971d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs index 31fba4d6..ebeeca0c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs index 04e78b76..83dd5a3d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs index 6148e51f..0d7e78a1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs index f05fc14a..f8499c3b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs index a5ae738f..ecdfb99e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs index 7828df60..131a8b44 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs index 9c09cfd5..a4fda47f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs index 6d0742db..2fcd215d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs index 2a2b3921..c20f3cec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs index a352c360..0cb43d7c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs index b4788da6..c5dd4cf9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs index 8068f689..fd07549d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs index a9755527..eafa5f59 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs index e6c89a17..2589cfae 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs index 51fee105..6105de40 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs index 8dc0e22c..35de8de8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs index a730d372..63339773 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs index e5cfbd25..4e3ac1ee 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs index 5666850c..862ee1b5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs index a14ac5de..190fd97a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs index 5c25a07d..7388f00b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs index 125eeabb..0364a42a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs index 63a927b3..6931d9c3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs index 7d08a750..ba9aa9a1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs index a0fa3c2f..74c82325 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs index 12a00d6f..8331a784 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs index 5eff4a34..0e697c98 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs index 84cd64d2..eb63c32f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs b/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs index e7358112..19fc87b1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs index e5ba7806..b651e473 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs index face5636..158b2b4d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs index 054cc17f..3847f60d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_03_SlotListInfoAndEventTest.cs index 36595166..725756cc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs index 2abc0af3..dc367904 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_05_MechanismListAndInfoTest.cs index d4afb4f4..b48c2258 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs index 6c5c84e6..b604d4ab 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs index 333d200f..a75bb320 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs index 7e8ed4fb..bd6b6550 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs index 9bc30763..5d74a5d0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs index 4e5d1bb0..62f9cd5f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_11_SeedAndGenerateRandomTest.cs index 14261a51..035bfc8f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs index ce45ce5b..b945c11b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs index f178f4aa..af7ece15 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs index 5c29b1f6..445f28d1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs index 8ad7a0d3..c3b1f484 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_16_GetAndSetAttributeValueTest.cs index 7c3e7b7a..5aa87e75 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs index 909fdef8..4f2273fa 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs index 9bee2f31..5d1be47e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_19_EncryptAndDecryptTest.cs index 292c065d..383a57f3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs index b1ba913b..f53ac2bb 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_21_SignAndVerifyRecoverTest.cs index e3121217..4c9ec076 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs index 089362ef..12e9ad14 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs index 638ada51..c9cd8609 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs index 8fd19b20..88f4ae74 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs index 18a3754e..60573268 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_26_LegacyParallelFunctionsTest.cs index 0da13665..42f41dde 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs index 04e2d26a..0dc0c0df 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs index 82a7ce53..dac671b0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs index efb56909..6c18e6a3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs index 77e5cca6..abdc6435 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs index 3f2937bc..b32edc83 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs index f3f5f883..d4e3cd66 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs index f8432a0f..5e9555f6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs index f05ffe52..db2193bd 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_03_SlotListInfoAndEventTest.cs index 30397c4c..894f596b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs index 8636840b..10d10a86 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_05_MechanismListAndInfoTest.cs index 25307901..0df74b13 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs index 4fdef150..f170de3a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs index aa1b6fea..a7d5c948 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs index 08769a66..551d2b12 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_09_InitTokenAndPinTest.cs index 3154528a..8a92b0b8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs index 92141d9f..d34b1732 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs index 2bc69e17..2c08cc9f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs index 9849b370..905ca7ec 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_13_ObjectAttributeTest.cs index f440217c..01a6b297 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs index 68cde391..5287bfd6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs index b1e9fbe8..9fd8dc22 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs index 3809f500..81bc246d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs index d5dde1e8..fc65c7bf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs index 23c89e06..37a93526 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_19_EncryptAndDecryptTest.cs index e30968fb..4e1716b2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs index aa652771..3b69e543 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs index 50e6d4b9..72e35600 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs index a0c6f2ab..d4266035 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs index 39c5da6b..3e143e19 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs index 57ffc09a..4e5ba56f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs index d274c7dd..1e417ef8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs index 6789fb84..9ceb6251 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs index 800c9811..2949c943 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs index 303897a6..b4977152 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs index da1f19f1..54ee5197 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs index 19783b52..fc0bc8b2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs index bb3d855e..82317dea 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_03_SlotListInfoAndEventTest.cs index a23c5259..3cc11444 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs index c0016645..e698dd4f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_05_MechanismListAndInfoTest.cs index 05f119b1..8c27dbe6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs index 2d59fc3d..2f072717 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs index 3513bc19..4f6c0214 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs index 6439f4b9..a560b6b4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_09_InitTokenAndPinTest.cs index 2472b24e..c445ff39 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs index ed75bdbe..87b6ceff 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs index 18baf27e..00c81428 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs index b510d3d2..3a103fde 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_13_ObjectAttributeTest.cs index 40ddd95f..32402620 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs index f3ae27ee..30d7f55e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs index d7092142..8f42b485 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs index 077decd0..9f70cf5f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs index 0a28d3de..6427eb05 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs index 75f692d3..09bf610a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_19_EncryptAndDecryptTest.cs index 9160ef2d..5c405f3e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs index 52e2bc46..bd3870bd 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs index 2f8eb193..87caf5b4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs index 2df11ab4..209497e2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs index 8da038e3..91489d30 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs index 08de5d60..f38f3bd2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs index 3a95ecd2..cd6259f6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs index 370f606e..3206144e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs index 69441c3d..278ed9b9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs index b8ca31a7..0c459892 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs index 4f4f2a36..16a4fe8c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs index 923d285a..187153b9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs index e815bacf..5185e9a9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_03_SlotListInfoAndEventTest.cs index 5e29a1c4..f969e0ab 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs index 32de9451..cb9e97dc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_05_MechanismListAndInfoTest.cs index 92687d3c..be1d2b94 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs index 41e4d2f8..9a4be62e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs index e2b96a4e..592daf7f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs index 1f5865fa..1fdc206c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_09_InitTokenAndPinTest.cs index aef4be1f..a7bb1dd1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs index 14fca011..e1f34a13 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs index 2fa584cc..9aea6b91 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs index 020ab68e..e9b16b32 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_13_ObjectAttributeTest.cs index 4bf2cbc4..0790bea9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs index 51a35776..5ea8b699 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs index 33c22e88..8c2b984a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs index d71fe714..644184f0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs index 958b55fe..4089d39e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs index 2a5844df..e213663f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_19_EncryptAndDecryptTest.cs index edc66273..69859c00 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs index c8c8b1ee..28958778 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs index 337785cb..6d618038 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs index 54c02b93..09d1e8a3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs index 7be417ac..c54c585d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs index 5cd3b17c..723dab58 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs index 0f7fe3cd..248c0e7e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs index 8087c5d1..284d07c8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs index a87c7e7a..c94e286d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs index bdacd837..c98db6f3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs index a8ce25ff..fdb3b5f0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs index 7390d6ca..4c1ec88f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs index f8ee4e94..e127b294 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_03_SlotListInfoAndEventTest.cs index 837b5c05..bef8f66e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs index ae7bd1ae..def393ad 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_05_MechanismListAndInfoTest.cs index 22c12186..8b71d31c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs index 0bda2467..f88c4e78 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs index fce61cab..5d36b97e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs index c5fbf7f4..b2e73d02 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_09_InitTokenAndPinTest.cs index 0c2bd7ba..432a8849 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs index a758d24b..0bc15b1b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs index 7d118337..090023f6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs index 37bcead9..4c9763e7 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_13_ObjectAttributeTest.cs index d99a1400..e16e998d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs index a9420bfe..0cffd128 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs index c17ebc59..0acc60ef 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs index ee41da49..f5a98d66 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs index d16b552f..7ed9ab15 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs index 1dfcc0c4..8a07d13c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_19_EncryptAndDecryptTest.cs index 03c08a68..cca8fa86 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs index 90c2b375..193ed84f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs index 4912cc2b..8e356eb9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs index b08f449a..3fecb54c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs index 7fdb3a7d..8e15fb20 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs index a74d0de9..98d50d08 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs index a2c93e98..beca5aa8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs index 685c1756..248bfd61 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs index c3811d5d..b4f021e7 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs index 1c7c5e3c..30738a62 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs index 785efc1b..08834f79 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs index 19f4875e..40cab202 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs index ba8d33e9..5fc1450e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_03_SlotListInfoAndEventTest.cs index 9a4cef4c..f08626df 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs index 0920fda0..9256cdba 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_05_MechanismListAndInfoTest.cs index 16206e79..255a1c1d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs index 46fb7259..c06a65ab 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs index c58153a6..93f3e024 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs index bbd476b2..0febb300 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs index e66240b4..f2033f3c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs index f935f192..bb577383 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs index 308423d3..70f17ece 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs index 31c92faa..3e8b35de 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs index c47f94f9..be4d387f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs index 1eac9175..d217afe5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs index 42bca83a..2f5857f3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs index 9a7a4507..d38aa912 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs index 3ecb36fe..00d709e2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs index 633f2675..12b6f53b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs index db8cfbb3..99d4681b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_20_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_20_EncryptAndDecryptTest.cs index a305bccd..2bf5e277 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_20_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_20_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs index 0fb36c10..50e8eb75 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs index f1d5c2cf..2957b47b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs index d67b5601..8ed5b462 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs index 216918aa..f6511ee8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs index 62119304..fb3ce5f2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs index 8f199c0e..e88a100c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs index 0f281bee..c3c6b6cc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs index 813323df..f497db09 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs index 75ce36e5..bce8f153 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs index 65fff9e9..01603369 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs index 440a081a..d157af60 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs index a33b0602..bda1c4a5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_03_SlotListInfoAndEventTest.cs index a0cff688..33e0dcc3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs index ddf903fd..7fb8a123 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_05_MechanismListAndInfoTest.cs index 18617cbb..f5b525bf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs index 0a3715ed..957c4168 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs index 6684fafb..d4bbbcea 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs index 02b42783..259e1ce7 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs index cd8b4c35..4d71e774 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs index 0170a129..8f0ed092 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs index 786c7b6a..8103ab62 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs index 82b6c8b8..2d5ce0c4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs index 73be5b13..f432d1a8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs index ad4c315b..58cf9da3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs index 2897b0d7..d0e838d5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs index 1daf40b0..70b1be2a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs index db223347..816991e0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs index 6a4fca8a..11585c44 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs index 79a35a23..0d8e6f4b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_20_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_20_EncryptAndDecryptTest.cs index c1e7dcde..d8aa1794 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_20_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_20_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs index 08abc650..8ff84a34 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs index c87005b7..0cca0903 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs index 8f7e5e76..e56ba98d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs index 95809676..3e14c0e6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs index eaf3dfb8..e0106073 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs index b78dbb44..418bee14 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs index e6fa1152..bee816bc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs index 32193e0a..74d6ea29 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs index d965d195..677786aa 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs index 6945fb54..896b218b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs index 4d66539c..1c287ca8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs index afa078cc..79d6d06c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_03_SlotListInfoAndEventTest.cs index 08e635c7..fdbf064b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs index 1fc652f1..bea5a8a8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_05_MechanismListAndInfoTest.cs index 4cad135d..1544d895 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs index 1e5712c9..28e88d0e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs index 4e2d2f3c..ffc03837 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs index d87182c8..628a65de 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs index 3ccced84..8da8bad6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs index 354bae23..0802e950 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs index 64bc4717..03005ccf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs index 3410e275..549cc53e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs index 44a26fce..d728a62a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs index be4144bc..f357235b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs index 1555120f..b5b0505a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs index 712bc29c..885f77cf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs index 027e8028..7ae038bf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs index 5100d034..1a8c6214 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs index fb6ee8f9..6f0d60b3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_20_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_20_EncryptAndDecryptTest.cs index ca1413cb..4b5620c6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_20_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_20_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs index f82f03d0..3e317b29 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs index 235a005d..c61142fa 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs index 71b10206..fbf35215 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs index a46c9f86..62e481d4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs index 54ea6cbb..f386c751 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs index dd4ab0c8..c0a10f81 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs index d95370f8..7b0503f6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs index 892adb43..85d43711 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs index 4d2e62c1..d2795b3e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs index 3ad6961b..f92c181e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs index 6412f487..bf5ef1d1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs index f0583227..ff2ed37a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_03_SlotListInfoAndEventTest.cs index 150f1e53..5d842c4d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs index e16e2abd..8df51326 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_05_MechanismListAndInfoTest.cs index 37814870..4de4d5b5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs index b3d8f5cf..7b3caea9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs index f4b89fc5..953c35b0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs index 4766d9ae..e23d6b72 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs index 92368426..c241175e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs index 2cd8fe24..3d1f05e5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs index 07bedbad..b6b56614 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs index 232555b1..0c68ab55 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs index ea7bb456..319db088 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs index fa11d2d1..1c650e81 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs index bdef3a8e..ed10c01e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs index 5afa5e63..8e7fcd2a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs index 4091e08a..aae9dc13 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs index a4417268..d11fbac2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs index 278e861d..312ce522 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_20_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_20_EncryptAndDecryptTest.cs index 9546e33c..57c82a34 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_20_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_20_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs index 9a5aa830..cf781eb5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs index 8a4308b2..e724d7f2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs index 682c240e..c0defc08 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs index 63985c5e..64616ff3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs index a02a04fa..62b89739 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs index a32a1227..e72e5548 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs index 9765c112..8e59d0d8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs index c8c330ae..34296775 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs index 653eb3d5..8079e918 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs index 59d9e603..8538202f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs index 5ad66224..450a3ed8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2017 The Pkcs11Interop Project + * Copyright 2012-2019 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From 9c9b8d696589a1d92bc667f93b32f09b0c68276f Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Wed, 23 Jan 2019 23:50:36 +0100 Subject: [PATCH 12/27] Updated version information to 4.1.0 --- appveyor.yml | 2 +- build/Pkcs11Interop.nuspec | 2 +- doc/doxygen/Doxyfile | 2 +- doc/doxygen/footer.html | 2 +- .../Properties/AssemblyInfo.cs | 4 +-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 +-- .../Properties/AssemblyInfo.cs | 6 ++-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 6 ++-- .../Properties/AssemblyInfo.cs | 4 +-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 +-- .../Properties/AssemblyInfo.cs | 4 +-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 +-- src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt | 36 +++++++++++-------- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 +-- .../Properties/AssemblyInfo.cs | 4 +-- 15 files changed, 48 insertions(+), 40 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 0fcf95c1..e6bf3d5f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 4.0.0-{build} +version: 4.1.0-{build} image: Visual Studio 2017 branches: only: diff --git a/build/Pkcs11Interop.nuspec b/build/Pkcs11Interop.nuspec index ffde1b7f..3bc844ae 100644 --- a/build/Pkcs11Interop.nuspec +++ b/build/Pkcs11Interop.nuspec @@ -2,7 +2,7 @@ Pkcs11Interop - 4.0.0 + 4.1.0 Pkcs11Interop Jaroslav Imrich Jaroslav Imrich diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index 0f939433..21088174 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Pkcs11Interop # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 4.0.0 +PROJECT_NUMBER = 4.1.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/doc/doxygen/footer.html b/doc/doxygen/footer.html index 3d8a453b..8b4bc859 100644 --- a/doc/doxygen/footer.html +++ b/doc/doxygen/footer.html @@ -3,7 +3,7 @@ \ No newline at end of file diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs index 06feab85..9e0efbbb 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("302998a1-5cba-4da7-a7d7-55dd3ae6fb5c")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs index 012bb1f7..c977837e 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("7102332a-1ac0-4823-8fcc-5037550e715d")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs index add3f211..bd6aee4b 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs @@ -12,6 +12,6 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("e7f90384-d5e2-4451-bdbe-7836ea107175")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] -[assembly: AssemblyInformationalVersion("4.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyInformationalVersion("4.1.0")] \ No newline at end of file diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs index b054f07a..6f72ae09 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,6 +12,6 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("af7dfa22-9f88-4497-bf4f-ddd2eda16fb5")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] -[assembly: AssemblyInformationalVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyInformationalVersion("4.1.0")] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs index 9de06b15..9852ceac 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("65e0c9a3-964c-4442-b695-2a18ceffc3f9")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs index 714874e2..00f9cfea 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("e4b6e4b2-8248-4f9f-8e6f-71c487d9c050")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs index c677d2c6..49610921 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("a810d426-39f4-4632-acbe-cccbaa2bbfb2")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs index 68ef1c48..7ffd0793 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("a4d564dd-8912-4b22-99ca-ddcd00ab440a")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] diff --git a/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt b/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt index b0814ca1..f8d2e079 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt +++ b/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt @@ -1,16 +1,24 @@ +Pkcs11Interop 4.1.0 (2019-01-24) + - #68 - Unified assembly name for all platforms to Pkcs11Interop.dll + - #88 - Adopted NuGet package signing + - #99 - Removed support for Coverity Scan service + - #101 - Added netstandard20 target to NuGet package + - #102 - Added support for Travis CI builds on Linux and macOS + - #103 - Added support for Xamarin.Mac + Pkcs11Interop 4.0.0 (2017-08-23) - - Fix #43: Updated to PKCS#11 v2.40 errata01 - - Fix #44: Updated to Visual Studio 2017 - - Fix #49: Projects in new Pkcs11Interop.NetStandard solution have been created + - #43 - Updated to PKCS#11 v2.40 errata01 + - #44 - Updated to Visual Studio 2017 + - #49 - Projects in new Pkcs11Interop.NetStandard solution have been created from scratch in Visual Studio 2017. This solution replaces old Pkcs11Interop.DotNetCore solution. - Renamed COREFX symbol to NETSTANDARD1_3 symbol - - Fix #50: Included PKCS11-MOCK 1.0.0 library in test projects - - Fix #51: Tests are executed during automated AppVeyor builds + - #50 - Included PKCS11-MOCK 1.0.0 library in test projects + - #51 - Tests are executed during automated AppVeyor builds - Build scripts now support "--with-tests" parameter - - Fix #52: Strongly named assemblies are generated by default - - Fix #53: All *StrongName* projects/libs/packages were dropped - - Fix #54: Introduced five new enums - AppType, InitType, SlotsType, WaitType + - #52 - Strongly named assemblies are generated by default + - #53 - All *StrongName* projects/libs/packages were dropped + - #54 - Introduced five new enums - AppType, InitType, SlotsType, WaitType and SessionType - that replaced several most annoying occurrences of bool type in public API. These changes break backwards API compatibility. @@ -19,8 +27,8 @@ Pkcs11Interop 3.3.0 (2017-01-24) by Peter Polačko - Added Session::CloseWhenDisposed property which brings more control over the session lifetime to HighLevelAPIs - - Fix #41: Added *.StrongName projects that produce strongly named - assemblies which are published in a separate nuget package + - #41 - Added *.StrongName projects that produce strongly named + assemblies which are published in a separate NuGet package - Introduced AttributeValueException that should provide more useful information when reading or conversion of attribute value fails @@ -29,7 +37,7 @@ Pkcs11Interop 3.2.0 (2016-07-17) - Refreshed Xamarin.Android and Xamarin.iOS solutions for VS 2015 - Xamarin.Android targets Android 2.3 API 10 as a minimum SDK version - Added build scripts for convenient releasing and NuGet packaging - - Fix #28: Introduced Net.Pkcs11Interop.Common.LibraryArchitectureException + - #28 - Introduced Net.Pkcs11Interop.Common.LibraryArchitectureException which indicates an attempt to load unmanaged PKCS#11 library designated for a different architecture - Fixed reading of empty CK_DATE attributes @@ -91,7 +99,7 @@ Pkcs11Interop 2.0.1 (2014-02-09) - Resolved Mac OS X detection and unmanaged library loading issues Pkcs11Interop 2.0 (2013-09-27) - - Fix #3: Platforms where C 'long' type is 8 bytes long (Linux x86_64) + - #3 - Platforms where C 'long' type is 8 bytes long (Linux x86_64) are now supported via LowLevelAPI8 and HighLevelAPI8 - LowLevelAPI and HighLevelAPI known from previous versions of library support only platforms where C 'long' type is 4 bytes long and they have @@ -109,10 +117,10 @@ Pkcs11Interop 1.3 (2013-07-20) - Correctly disposes returned SSL and WTLS key material Pkcs11Interop 1.2 (2013-05-21) - - Fix #4: Empty string is supported as a value of object attribute + - #4 - Empty string is supported as a value of object attribute Pkcs11Interop 1.1 (2013-04-14) - - Fix #1: HighLevelAPI4.Slot.SlotId can be 0 + - #1 - HighLevelAPI4.Slot.SlotId can be 0 Pkcs11Interop 1.0 (2013-02-02) - Initial stable release \ No newline at end of file diff --git a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs index 74c82325..229b426a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("752ec6ad-5efc-408f-8563-9e134d982a59")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs index 8538202f..3f7f9995 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("915698de-fa4d-42f3-91f2-98ce11fff1fc")] -[assembly: AssemblyVersion("4.0.0")] -[assembly: AssemblyFileVersion("4.0.0")] +[assembly: AssemblyVersion("4.1.0")] +[assembly: AssemblyFileVersion("4.1.0")] From a8132a3b1c87beacb8119d87b7fa4546a0555643 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sat, 30 Mar 2019 22:39:34 +0100 Subject: [PATCH 13/27] Fix platform detection on new Android versions Addresses #106 in Pkcs11Interop 4.x only --- src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs index eadbf196..e52de738 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs @@ -191,7 +191,15 @@ private static void DetectPlatform() if (_isWindows || _isLinux || _isMacOsX) return; -#if SILVERLIGHT +#if __ANDROID__ + + _isLinux = true; + +#elif __IOS__ + + _isMacOsX = true; + +#elif SILVERLIGHT if (System.Windows.Application.Current.HasElevatedPermissions) { @@ -235,7 +243,6 @@ private static void DetectPlatform() string osType = File.ReadAllText(@"/proc/sys/kernel/ostype"); if (osType.StartsWith("Linux", StringComparison.OrdinalIgnoreCase)) { - // Note: Android gets here too _isLinux = true; } else @@ -245,7 +252,6 @@ private static void DetectPlatform() } else if (File.Exists(@"/System/Library/CoreServices/SystemVersion.plist")) { - // Note: iOS gets here too _isMacOsX = true; } else @@ -254,7 +260,6 @@ private static void DetectPlatform() } #endif - } } } From 305fd7147d3fc811e36f7f8e72ba25630ecf466b Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 31 Mar 2019 15:13:15 +0200 Subject: [PATCH 14/27] TargetFrameworkVersion updated to v8.0 (API level 26) --- .../Pkcs11Interop.Android.Tests.csproj | 5 ++++- .../Properties/AndroidManifest.xml | 2 +- src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj index 3bff69cc..7aaade2b 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj @@ -16,7 +16,7 @@ Resources\Resource.Designer.cs Off False - v6.0 + v8.0 Properties\AndroidManifest.xml @@ -29,6 +29,9 @@ 4 True None + false + false + false pdbonly diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AndroidManifest.xml b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AndroidManifest.xml index 03abedc8..736e9843 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AndroidManifest.xml +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj b/src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj index 24513900..ba02d1f9 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj @@ -15,7 +15,7 @@ Resources\Resource.Designer.cs Off False - v2.3 + v8.0 true From a1dc439ec95c5247805e9f3509efa5e88b6bcede Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 31 Mar 2019 15:32:39 +0200 Subject: [PATCH 15/27] Don't throw LibraryArchitectureException on macOS (#116) --- .../Pkcs11Interop/Common/NativeMethods.cs | 15 --------------- .../Pkcs11Interop/Common/UnmanagedLibrary.cs | 11 ++--------- 2 files changed, 2 insertions(+), 24 deletions(-) diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs index 4a24f1f6..2869c27b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs @@ -154,21 +154,6 @@ internal static class NativeMethods internal static extern IntPtr dlopen(string filename, int flag); #endif - /// - /// Checks if the library (mach-o file) is compatible with the current process - /// - /// Library path. - /// True if library is compatible. If library is not compatible, it returns false and sets an error string that can be examined with dlerror. -#if SILVERLIGHT - [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false)] - [return: MarshalAs(UnmanagedType.U1)] - internal static extern bool dlopen_preflight(string path); -#else - [DllImport(_dllName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true)] - [return: MarshalAs(UnmanagedType.U1)] - internal static extern bool dlopen_preflight(string path); -#endif - /// /// Decrements the reference count on the dynamic library handle. If the reference count drops to zero and no other loaded libraries use symbols in it, then the dynamic library is unloaded. /// diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs index bdbc7c5d..8d00ad10 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs @@ -63,15 +63,8 @@ public static IntPtr Load(string fileName) } } - // Perform Mac OS X specific library compatibility checks - if (Platform.IsMacOsX && !NativeMethods.dlopen_preflight(fileName)) - { - IntPtr error = NativeMethods.dlerror(); - if (error == IntPtr.Zero) - throw new LibraryArchitectureException(); - else - throw new LibraryArchitectureException(new UnmanagedException(Marshal.PtrToStringAnsi(error))); - } + // Note: On Mac OS X there's dlopen_preflight function that checks whether the library is compatible with current process or not but it cannot be used here + // as it just returns the same errors as dlopen function and does not allow us to distinguish between invalid path, invalid architecture and other errors. // Load library int flags = Platform.IsLinux ? (NativeMethods.RTLD_NOW_LINUX | NativeMethods.RTLD_LOCAL_LINUX) : (NativeMethods.RTLD_NOW_MACOSX | NativeMethods.RTLD_LOCAL_MACOSX); From 6933e66e3307bffe0b535f16c69577e547fd1785 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 31 Mar 2019 19:04:43 +0200 Subject: [PATCH 16/27] Updated version information to 4.1.1 --- appveyor.yml | 2 +- build/Pkcs11Interop.nuspec | 2 +- doc/doxygen/Doxyfile | 2 +- .../Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 ++-- .../Properties/AssemblyInfo.cs | 6 +++--- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 6 +++--- .../Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 ++-- src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt | 6 ++++++ src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11InteropTests/Properties/AssemblyInfo.cs | 4 ++-- 14 files changed, 31 insertions(+), 25 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index e6bf3d5f..17bd7dc9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 4.1.0-{build} +version: 4.1.1-{build} image: Visual Studio 2017 branches: only: diff --git a/build/Pkcs11Interop.nuspec b/build/Pkcs11Interop.nuspec index 3bc844ae..e5666d58 100644 --- a/build/Pkcs11Interop.nuspec +++ b/build/Pkcs11Interop.nuspec @@ -2,7 +2,7 @@ Pkcs11Interop - 4.1.0 + 4.1.1 Pkcs11Interop Jaroslav Imrich Jaroslav Imrich diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index 21088174..1ecb955a 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Pkcs11Interop # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 4.1.0 +PROJECT_NUMBER = 4.1.1 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs index 9e0efbbb..2a0ebd81 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("302998a1-5cba-4da7-a7d7-55dd3ae6fb5c")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs index c977837e..9bc81c90 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("7102332a-1ac0-4823-8fcc-5037550e715d")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs index bd6aee4b..33e725c7 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs @@ -12,6 +12,6 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("e7f90384-d5e2-4451-bdbe-7836ea107175")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] -[assembly: AssemblyInformationalVersion("4.1.0")] \ No newline at end of file +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyInformationalVersion("4.1.1")] \ No newline at end of file diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs index 6f72ae09..86191b6d 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,6 +12,6 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("af7dfa22-9f88-4497-bf4f-ddd2eda16fb5")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] -[assembly: AssemblyInformationalVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyInformationalVersion("4.1.1")] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs index 9852ceac..2c3d6915 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("65e0c9a3-964c-4442-b695-2a18ceffc3f9")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs index 00f9cfea..6d2f0ff5 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("e4b6e4b2-8248-4f9f-8e6f-71c487d9c050")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs index 49610921..baa569d4 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("a810d426-39f4-4632-acbe-cccbaa2bbfb2")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs index 7ffd0793..8b1d2dac 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("a4d564dd-8912-4b22-99ca-ddcd00ab440a")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] diff --git a/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt b/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt index f8d2e079..90bf2f4e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt +++ b/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt @@ -1,3 +1,9 @@ +Pkcs11Interop 4.1.1 (2019-03-31) + - #115 - Fixed automatic platform detection on new versions of Android + and updated Android TargetFrameworkVersion to v8.0 (API level 26) + - #116 - LibraryArchitectureException won't be thrown on macOS + for errors unrelated to unmanaged library platform + Pkcs11Interop 4.1.0 (2019-01-24) - #68 - Unified assembly name for all platforms to Pkcs11Interop.dll - #88 - Adopted NuGet package signing diff --git a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs index 229b426a..3f959e01 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("752ec6ad-5efc-408f-8563-9e134d982a59")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs index 3f7f9995..08f57e32 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("915698de-fa4d-42f3-91f2-98ce11fff1fc")] -[assembly: AssemblyVersion("4.1.0")] -[assembly: AssemblyFileVersion("4.1.0")] +[assembly: AssemblyVersion("4.1.1")] +[assembly: AssemblyFileVersion("4.1.1")] From 9b41bba178ba244c23afc65716cc19962a220bd8 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sat, 12 Dec 2020 16:24:43 +0100 Subject: [PATCH 17/27] Enlarge the buffer for C_EncryptUpdate and C_DecryptUpdate when needed e.g. by CKM_GOST28147 --- .../Pkcs11Interop/HighLevelAPI40/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI41/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI80/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI81/Session.cs | 22 +++++++++++++++++-- 4 files changed, 80 insertions(+), 8 deletions(-) diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs index f9305dba..f41898f1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs @@ -807,9 +807,18 @@ public void Encrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr { encryptedPartLen = Convert.ToUInt32(encryptedPart.Length); rv = _p11.C_EncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_EncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_EncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_EncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -941,9 +950,18 @@ public void Decrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr { partLen = Convert.ToUInt32(part.Length); rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_EncryptUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs index d4dfcf21..c00dc96f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs @@ -807,9 +807,18 @@ public void Encrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr { encryptedPartLen = Convert.ToUInt32(encryptedPart.Length); rv = _p11.C_EncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_EncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_EncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_EncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -941,9 +950,18 @@ public void Decrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr { partLen = Convert.ToUInt32(part.Length); rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_EncryptUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs index 65654b86..3473c90c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs @@ -807,9 +807,18 @@ public void Encrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr { encryptedPartLen = Convert.ToUInt64(encryptedPart.Length); rv = _p11.C_EncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_EncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_EncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_EncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -941,9 +950,18 @@ public void Decrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr { partLen = Convert.ToUInt64(part.Length); rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_EncryptUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs index d364066f..36fd65cb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs @@ -807,9 +807,18 @@ public void Encrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr { encryptedPartLen = Convert.ToUInt64(encryptedPart.Length); rv = _p11.C_EncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_EncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_EncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_EncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -941,9 +950,18 @@ public void Decrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr { partLen = Convert.ToUInt64(part.Length); rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_EncryptUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } From f6ff90d89d470c1ad7be4eb1cb0bc664fafd0720 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 13 Dec 2020 19:48:18 +0100 Subject: [PATCH 18/27] Enlarge the buffer for C_DigestEncryptUpdate and C_DecryptDigestUpdate when needed --- .../Pkcs11Interop/HighLevelAPI40/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI41/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI80/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI81/Session.cs | 22 +++++++++++++++++-- 4 files changed, 80 insertions(+), 8 deletions(-) diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs index f41898f1..098962f8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs @@ -1591,9 +1591,18 @@ public byte[] DigestEncrypt(Mechanism digestingMechanism, Mechanism encryptionMe { encryptedPartLen = Convert.ToUInt32(encryptedPart.Length); rv = _p11.C_DigestEncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DigestEncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_DigestEncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DigestEncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -1746,9 +1755,18 @@ public byte[] DecryptDigest(Mechanism digestingMechanism, Mechanism decryptionMe { partLen = Convert.ToUInt32(part.Length); rv = _p11.C_DecryptDigestUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptDigestUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptDigestUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DecryptDigestUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs index c00dc96f..b0b13d51 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs @@ -1591,9 +1591,18 @@ public byte[] DigestEncrypt(Mechanism digestingMechanism, Mechanism encryptionMe { encryptedPartLen = Convert.ToUInt32(encryptedPart.Length); rv = _p11.C_DigestEncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DigestEncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_DigestEncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DigestEncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -1746,9 +1755,18 @@ public byte[] DecryptDigest(Mechanism digestingMechanism, Mechanism decryptionMe { partLen = Convert.ToUInt32(part.Length); rv = _p11.C_DecryptDigestUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptDigestUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptDigestUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DecryptDigestUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs index 3473c90c..7b9f5b16 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs @@ -1591,9 +1591,18 @@ public byte[] DigestEncrypt(Mechanism digestingMechanism, Mechanism encryptionMe { encryptedPartLen = Convert.ToUInt64(encryptedPart.Length); rv = _p11.C_DigestEncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DigestEncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_DigestEncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DigestEncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -1746,9 +1755,18 @@ public byte[] DecryptDigest(Mechanism digestingMechanism, Mechanism decryptionMe { partLen = Convert.ToUInt64(part.Length); rv = _p11.C_DecryptDigestUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptDigestUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptDigestUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DecryptDigestUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs index 36fd65cb..8435c25f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs @@ -1591,9 +1591,18 @@ public byte[] DigestEncrypt(Mechanism digestingMechanism, Mechanism encryptionMe { encryptedPartLen = Convert.ToUInt64(encryptedPart.Length); rv = _p11.C_DigestEncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DigestEncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_DigestEncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DigestEncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -1746,9 +1755,18 @@ public byte[] DecryptDigest(Mechanism digestingMechanism, Mechanism decryptionMe { partLen = Convert.ToUInt64(part.Length); rv = _p11.C_DecryptDigestUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptDigestUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptDigestUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DecryptDigestUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } From 614203f7a5668ace80f9437ca7782c38d75e4dff Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 13 Dec 2020 20:05:06 +0100 Subject: [PATCH 19/27] Enlarge the buffer for C_SignEncryptUpdate and C_DecryptVerifyUpdate when needed --- .../Pkcs11Interop/HighLevelAPI40/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI41/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI80/Session.cs | 22 +++++++++++++++++-- .../Pkcs11Interop/HighLevelAPI81/Session.cs | 22 +++++++++++++++++-- 4 files changed, 80 insertions(+), 8 deletions(-) diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs index 098962f8..c4e534da 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs @@ -1931,9 +1931,18 @@ public byte[] SignEncrypt(Mechanism signingMechanism, ObjectHandle signingKeyHan { encryptedPartLen = Convert.ToUInt32(encryptedPart.Length); rv = _p11.C_SignEncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_SignEncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_SignEncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_SignEncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -2110,9 +2119,18 @@ public void DecryptVerify(Mechanism verificationMechanism, ObjectHandle verifica { partLen = Convert.ToUInt32(part.Length); rv = _p11.C_DecryptVerifyUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptVerifyUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptVerifyUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DecryptVerifyUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs index b0b13d51..d6f92b79 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs @@ -1931,9 +1931,18 @@ public byte[] SignEncrypt(Mechanism signingMechanism, ObjectHandle signingKeyHan { encryptedPartLen = Convert.ToUInt32(encryptedPart.Length); rv = _p11.C_SignEncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_SignEncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_SignEncryptUpdate(_sessionId, part, Convert.ToUInt32(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_SignEncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -2110,9 +2119,18 @@ public void DecryptVerify(Mechanism verificationMechanism, ObjectHandle verifica { partLen = Convert.ToUInt32(part.Length); rv = _p11.C_DecryptVerifyUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptVerifyUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptVerifyUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DecryptVerifyUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs index 7b9f5b16..c365571f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs @@ -1931,9 +1931,18 @@ public byte[] SignEncrypt(Mechanism signingMechanism, ObjectHandle signingKeyHan { encryptedPartLen = Convert.ToUInt64(encryptedPart.Length); rv = _p11.C_SignEncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_SignEncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_SignEncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_SignEncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -2110,9 +2119,18 @@ public void DecryptVerify(Mechanism verificationMechanism, ObjectHandle verifica { partLen = Convert.ToUInt64(part.Length); rv = _p11.C_DecryptVerifyUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptVerifyUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptVerifyUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DecryptVerifyUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs index 8435c25f..a2cd5444 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs @@ -1931,9 +1931,18 @@ public byte[] SignEncrypt(Mechanism signingMechanism, ObjectHandle signingKeyHan { encryptedPartLen = Convert.ToUInt64(encryptedPart.Length); rv = _p11.C_SignEncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_SignEncryptUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + encryptedPart = new byte[encryptedPartLen]; + + rv = _p11.C_SignEncryptUpdate(_sessionId, part, Convert.ToUInt64(bytesRead), encryptedPart, ref encryptedPartLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_SignEncryptUpdate", rv); + } + outputStream.Write(encryptedPart, 0, Convert.ToInt32(encryptedPartLen)); } @@ -2110,9 +2119,18 @@ public void DecryptVerify(Mechanism verificationMechanism, ObjectHandle verifica { partLen = Convert.ToUInt64(part.Length); rv = _p11.C_DecryptVerifyUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); - if (rv != CKR.CKR_OK) + if (rv != CKR.CKR_OK && rv != CKR.CKR_BUFFER_TOO_SMALL) throw new Pkcs11Exception("C_DecryptVerifyUpdate", rv); + if (rv == CKR.CKR_BUFFER_TOO_SMALL) + { + part = new byte[partLen]; + + rv = _p11.C_DecryptVerifyUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); + if (rv != CKR.CKR_OK) + throw new Pkcs11Exception("C_DecryptVerifyUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } From 8b73b6c31c0df8ed275b9b327eb9d1ffaff5cfc5 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 13 Dec 2020 21:05:17 +0100 Subject: [PATCH 20/27] Fix copy-paste error --- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs index c4e534da..da54fdf0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs @@ -959,7 +959,7 @@ public void Decrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); if (rv != CKR.CKR_OK) - throw new Pkcs11Exception("C_EncryptUpdate", rv); + throw new Pkcs11Exception("C_DecryptUpdate", rv); } outputStream.Write(part, 0, Convert.ToInt32(partLen)); diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs index d6f92b79..e9bbc5d7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs @@ -959,7 +959,7 @@ public void Decrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt32(bytesRead), part, ref partLen); if (rv != CKR.CKR_OK) - throw new Pkcs11Exception("C_EncryptUpdate", rv); + throw new Pkcs11Exception("C_DecryptUpdate", rv); } outputStream.Write(part, 0, Convert.ToInt32(partLen)); diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs index c365571f..cde9b398 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs @@ -959,7 +959,7 @@ public void Decrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); if (rv != CKR.CKR_OK) - throw new Pkcs11Exception("C_EncryptUpdate", rv); + throw new Pkcs11Exception("C_DecryptUpdate", rv); } outputStream.Write(part, 0, Convert.ToInt32(partLen)); diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs index a2cd5444..ad299cfe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs @@ -959,7 +959,7 @@ public void Decrypt(Mechanism mechanism, ObjectHandle keyHandle, Stream inputStr rv = _p11.C_DecryptUpdate(_sessionId, encryptedPart, Convert.ToUInt64(bytesRead), part, ref partLen); if (rv != CKR.CKR_OK) - throw new Pkcs11Exception("C_EncryptUpdate", rv); + throw new Pkcs11Exception("C_DecryptUpdate", rv); } outputStream.Write(part, 0, Convert.ToInt32(partLen)); From 200388aa340779b4e50e7e79025301bbe958f45d Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 13 Dec 2020 21:47:23 +0100 Subject: [PATCH 21/27] Updated year in copyrights --- build/Pkcs11Interop.nuspec | 2 +- doc/doxygen/footer.html | 2 +- .../Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- .../Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs | 2 +- src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs | 2 +- .../Pkcs11Interop/Common/AttributeValueException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs | 2 +- .../Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs | 2 +- .../Pkcs11Interop/Common/LibraryArchitectureException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs | 2 +- .../Pkcs11Interop/Common/UnsupportedPlatformException.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs | 2 +- .../HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkAesCtrParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkAesCtrParams.cs | 2 +- .../MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs | 2 +- .../Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkAesCtrParams.cs | 2 +- .../MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs | 2 +- .../Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkAesCtrParams.cs | 2 +- .../MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs | 2 +- .../Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkAesCtrParams.cs | 2 +- .../MechanismParams/CkAriaCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkCamelliaCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkCmsSigParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkExtractParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs | 2 +- .../MechanismParams/CkSeedCbcEncryptDataParams.cs | 2 +- .../MechanismParams/CkSkipjackPrivateWrapParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs | 2 +- .../MechanismParams/CkSsl3MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs | 2 +- .../MechanismParams/CkTls12MasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkTlsMacParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs | 2 +- .../MechanismParams/CkWtlsMasterKeyDeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs | 2 +- .../HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs | 2 +- .../Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs | 2 +- .../MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs | 2 +- .../MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs | 2 +- .../MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs | 2 +- .../MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs | 2 +- .../MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs | 2 +- .../MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs | 2 +- .../MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs | 2 +- .../MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs | 2 +- .../MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs | 2 +- .../MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs | 2 +- .../MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs | 2 +- .../MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs | 2 +- .../MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs | 2 +- .../MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs | 2 +- .../MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs | 2 +- .../MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs | 2 +- .../MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs | 2 +- .../MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs | 2 +- .../MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs | 2 +- .../MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs | 2 +- .../Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs | 2 +- .../MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs | 2 +- .../MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs | 2 +- .../MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs | 2 +- .../LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs | 2 +- src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs | 2 +- .../Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs | 2 +- .../Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs | 2 +- .../HighLevelAPI/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs | 2 +- .../HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs | 2 +- .../HighLevelAPI/_29_SlotClassExtensionTest.cs | 2 +- .../HighLevelAPI/_30_SessionClassExtensionTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI40/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI40/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs | 2 +- .../HighLevelAPI40/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs | 2 +- .../HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs | 2 +- .../HighLevelAPI40/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs | 2 +- .../HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI40/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI41/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI41/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs | 2 +- .../HighLevelAPI41/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs | 2 +- .../HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs | 2 +- .../HighLevelAPI41/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs | 2 +- .../HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI41/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI80/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI80/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs | 2 +- .../HighLevelAPI80/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs | 2 +- .../HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs | 2 +- .../HighLevelAPI80/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs | 2 +- .../HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI80/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs | 2 +- .../HighLevelAPI81/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs | 2 +- .../HighLevelAPI81/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs | 2 +- .../HighLevelAPI81/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs | 2 +- .../HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs | 2 +- .../HighLevelAPI81/_13_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs | 2 +- .../HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs | 2 +- .../HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs | 2 +- .../HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs | 2 +- .../HighLevelAPI81/_19_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs | 2 +- .../HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs | 2 +- .../HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs | 2 +- .../HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs | 2 +- .../HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs | 2 +- .../LowLevelAPI40/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs | 2 +- .../LowLevelAPI40/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs | 2 +- .../LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs | 2 +- .../LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs | 2 +- .../LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs | 2 +- .../LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs | 2 +- .../LowLevelAPI40/_20_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs | 2 +- .../LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs | 2 +- .../LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs | 2 +- .../LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs | 2 +- .../LowLevelAPI41/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs | 2 +- .../LowLevelAPI41/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs | 2 +- .../LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs | 2 +- .../LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs | 2 +- .../LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs | 2 +- .../LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs | 2 +- .../LowLevelAPI41/_20_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs | 2 +- .../LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs | 2 +- .../LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs | 2 +- .../LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs | 2 +- .../LowLevelAPI80/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs | 2 +- .../LowLevelAPI80/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs | 2 +- .../LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs | 2 +- .../LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs | 2 +- .../LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs | 2 +- .../LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs | 2 +- .../LowLevelAPI80/_20_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs | 2 +- .../LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs | 2 +- .../LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs | 2 +- .../LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs | 2 +- .../LowLevelAPI81/_03_SlotListInfoAndEventTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs | 2 +- .../LowLevelAPI81/_05_MechanismListAndInfoTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs | 2 +- .../LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs | 2 +- .../LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs | 2 +- .../LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs | 2 +- .../LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs | 2 +- .../LowLevelAPI81/_20_EncryptAndDecryptTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs | 2 +- .../LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs | 2 +- .../LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs | 2 +- .../LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs | 2 +- .../LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs | 2 +- .../LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs | 2 +- .../Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs | 2 +- src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs | 2 +- 989 files changed, 989 insertions(+), 989 deletions(-) diff --git a/build/Pkcs11Interop.nuspec b/build/Pkcs11Interop.nuspec index e5666d58..0918474e 100644 --- a/build/Pkcs11Interop.nuspec +++ b/build/Pkcs11Interop.nuspec @@ -12,7 +12,7 @@ https://www.pkcs11interop.net/nuget/pkcs11interop-icon-64x64.png Managed .NET wrapper for unmanaged PKCS#11 libraries - Copyright 2012-2019 The Pkcs11Interop Project + Copyright 2012-2020 The Pkcs11Interop Project pkcs pkcs11 security crypto cryptography smartcard hsm diff --git a/doc/doxygen/footer.html b/doc/doxygen/footer.html index 8b4bc859..446f7a25 100644 --- a/doc/doxygen/footer.html +++ b/doc/doxygen/footer.html @@ -1,7 +1,7 @@ diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs index 2a0ebd81..67ef01e9 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs index 9bc81c90..cd8f8d3b 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs index 33e725c7..86614911 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs index 86191b6d..24a69e3e 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs index 2c3d6915..696f9de9 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs index 6d2f0ff5..35294319 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs index baa569d4..e2534866 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs @@ -6,7 +6,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs index 8b1d2dac..b25c4512 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -6,7 +6,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs index da55d421..f7c42e88 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs index 1d6714c5..8acd70af 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/AttributeValueException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs index 1ae86dcd..f6757e17 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs index 1a030894..c3958818 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs index e6685b7e..7402990f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKC.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs index dac74230..48f05d72 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKD.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs index 8214a9fd..e629df5c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKF.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs index 860a1581..a6a8c0ce 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKG.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs index 2791a6a5..9444b5cd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKH.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs index bfae06b1..44a2e441 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKK.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs index 6721e85f..9704da99 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs index 3e804f99..008ecd45 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKN.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs index 6593f009..fab08a65 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs index ca8e6936..baa6f4ca 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKP.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs index de3fd9af..34de9091 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKR.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs index dc5fb556..1f420e90 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs index 28ad1038..12327236 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKU.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs index b5e7d220..120a16d4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/CKZ.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs index aa34eb7d..c70c9872 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/ConvertUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs index 6c9f3593..901efc69 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/ElevatedPermissionsMissingException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs index 92a453e9..4556e30b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/IMechanismParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs index 0255a26d..53851f37 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/InitType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/LibraryArchitectureException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/LibraryArchitectureException.cs index 4d179580..9c8b938e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/LibraryArchitectureException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/LibraryArchitectureException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs index 2869c27b..d1399a42 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs index 009bc854..1caca9a6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs index 266cc450..fb33b196 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs index b74f7de2..284242b2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriBuilder.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs index 1c465d7f..5325d767 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs index 129cde91..25d7db5b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSharedUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs index 3a95871e..7d6b0470 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11UriSpec.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs index e52de738..426c673d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/Platform.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs index b212ee50..81fc66cd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs index 34055dea..5576c9c9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/SlotsType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs index 33b74a6d..2b88be03 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs index 8d00ad10..1443e208 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs index 90e7faad..43f6f6cf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnsupportedPlatformException.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnsupportedPlatformException.cs index c99e6a20..f8ff07b7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/UnsupportedPlatformException.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/UnsupportedPlatformException.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs index eadd1392..1541fbfe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Common/WaitType.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs index 6d5e76c6..3b3553f6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs index dd1e5a39..e510f47c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs index dc46a2c6..6149084b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs index 0cf7b6a4..341c8b1e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs index 56dd6617..34e5386d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCtrParams.cs index 9aba794d..cca9dfc3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs index a6ff4041..e60a0126 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index 9b864add..2c346bc9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs index d99080dc..91aa6466 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs index dfe46a37..d4ee1676 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCmsSigParams.cs index fd8de02f..a67fcca0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs index a124f852..4414e202 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs index b4181bf5..2aa257dd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs index 80081365..7d66dc69 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs index 6c63c3b3..69f39849 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs index 09baee29..9f524f7d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs index 18a1a576..a70ba8d2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkExtractParams.cs index 4b7093fc..12df6345 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs index 95b075bf..b1e46009 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs index 1b81dc86..e3e07f79 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs index 563d0fc8..49b1124e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs index 67c384a3..58146ed2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs index 00016c9c..facc5b6a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs index 4e2ddf9d..39eede88 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs index 54dd1348..a372e9a0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkMacGeneralParams.cs index daf606c9..529e8af4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs index 83149fd0..ca89980e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs index d46f5b3d..16b33b86 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs index cecade17..07568b0e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs index e2580a30..8bfc2c36 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs index 61783ff4..18bf2920 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs index fd6c948e..d60156ea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2CbcParams.cs index b7fb80dc..bfd0e442 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs index ebc5e6d3..6d219d8c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs index 0f03de41..2879990d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5CbcParams.cs index c879849c..27334f34 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs index 725cad5f..1574181b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs index a246200b..d79838fd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs index 1cdf013b..8609b41e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs index ac318122..f3627904 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs index 50dcf549..d622fddb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs index b7babbea..d71ad219 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs index 3aa59539..e62c7808 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs index 887ba1ae..a1526dd2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs index d2fb0a09..d86119f5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs index e90b84ec..b4cd5bfe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index 7486206e..d8310609 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3RandomData.cs index 6934bbd7..139d6ebc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs index 522d4e26..9abfed6f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12MasterKeyDeriveParams.cs index 8e41b38e..4271163b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsKdfParams.cs index cceec908..7aa60398 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsMacParams.cs index 825afbbd..abdbdcf9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsPrfParams.cs index 54652a10..d525f42c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs index 756a967d..e95505fd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs index 674e9893..ad782744 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs index 2aeb8877..44f7f58e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index b638cfc3..51525693 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs index af8a2d82..5b054366 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsRandomData.cs index 18bc356e..fd923a11 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs index 47e79d5f..31bc3779 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs index 3e58a0da..e94e9c5d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs index be1c6aa1..7be06813 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs index ac07e8c0..156d48d8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs index f6a35441..d456964b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs index c81bde3a..7b2393cc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs index feae4920..921c210b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs index 54d76e44..44b5e2eb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs index 4ce78ab3..ffaf7340 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs index eb088b66..451349ed 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs index ef28630b..841e2b09 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs index 27de383d..12c717e5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs index 6e47ea95..9187314d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs index 2b148820..1fff443b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs index b8ae61cc..20f14ab0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs index e2e63f88..4e0bf744 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs index 75979496..347b818e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs index 53622943..5beecc16 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs index 43d5afc8..f8c78376 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs index 78875299..fba2d1cc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCtrParams.cs index f2bc4d69..0c2d4a27 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAriaCbcEncryptDataParams.cs index 33b59046..a89f8dc6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index a3b6813e..6268449b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs index 1aaa329a..96780347 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs index 187d7b96..04bfc4e0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCmsSigParams.cs index f0f449c7..db8edd95 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs index bc325838..bab5cb43 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs index b20585fd..e146a85f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs index db657f50..aedd32a7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs index 2964ad60..4ecc48c9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs index 9704a16c..7e32d4b3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs index dedec557..a48cab93 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkExtractParams.cs index 103f282f..1bda03b8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs index a775f93d..1e505b4f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs index f893c9c1..7d4caa8a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs index 62fdaadc..b3367f9e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs index f28c6dca..0de7b33c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs index 413d0db5..41d52655 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs index a16c6f8e..28a3fc89 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs index 4a1878cb..c081218a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs index 6d7e94e2..dd9165f1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs index b2686d55..d0667523 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs index 88173fbc..253daec2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs index caf67fdd..f3994907 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs index 48f9200a..5be3dc3d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs index 2c6d186d..c499b86a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs index 178bee34..ec720c0c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs index 15c93749..bad37b73 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs index 42534346..af5de2dd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs index ccf96df2..9b1b4fca 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs index a74f0449..56052b04 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs index bb03a5d2..6d013ff8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs index b6dcfc46..712cbfeb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs index 460061a5..e81e6031 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs index 93e1199c..5c1b4c3d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs index 74964911..5d7ce26c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSeedCbcEncryptDataParams.cs index 04f0b11a..ce8155c4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackPrivateWrapParams.cs index aaed1a05..9c0def78 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs index 3d74e60f..f27bc48d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs index 6700d722..f99de8aa 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs index 8e033c72..b4bd4602 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index e6c5db9b..22f661ed 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs index e50462b0..2b363e37 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs index a8efe073..55306902 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12MasterKeyDeriveParams.cs index 5c66d5ca..f29be8cf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs index 8810b12a..1d110196 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsMacParams.cs index 2f3d2e91..8d9bc202 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs index e5ced285..8f821c70 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs index ff8fc204..295ce3a3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs index c4ab8374..7fc8a36b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs index f2589ecd..e7289367 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index b21a4020..28a47ff9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs index d2d84e2d..fdd73ca0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs index 8863899f..4a1b3ad8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs index 80f12894..751da4cb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs index 286c1cb2..a847560d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs index ed7b7b41..d01024a6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs index 3df931ce..6391ec4d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs index 29403f4b..d27e48df 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs index 7476b10e..ac267a70 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs index 04e6d5dd..59d0b7fe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs index da54fdf0..9ca438bf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs index 42dde6d0..96ee5045 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs index a00c7bd6..55326cb6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs index 10d2dced..aacfae78 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs index ae40d0b6..39228644 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs index 272e5398..1633ff1c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs index c8250857..8860001c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs index ba0e19f3..a2ad9d8a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs index 65ce6a36..576a53db 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs index b9e6c3d2..f5c051ef 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs index 5087ab7f..c27b9193 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs index eefc0789..1087a9d7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs index fc1e6dbd..04fdad1a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCtrParams.cs index ea67fd7d..a1098e4b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAriaCbcEncryptDataParams.cs index 1400b138..0fad05b5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index 12ddffbf..5cc63f5e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs index 38ee0588..1066f06a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs index 3ed4cf86..3745802a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCmsSigParams.cs index 56acbe83..24c71de1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs index 8dd7d8d8..96800406 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs index b9526606..88093792 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs index 0a1f40f5..0a050fde 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs index b8141e99..fd6e6bf2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs index 12d2a99b..38bfd602 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs index 6bcb1d0d..487f2dd3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkExtractParams.cs index b7d08732..11011c12 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs index 9a6830a7..8e928ee7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs index 0c15e151..2ea1c41e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs index 47c2f9a6..e78afd7e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs index b3c23b7a..83acb2d0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs index c5164cba..db3f6dec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs index 087b0b4c..28e3e970 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs index c7a4c87b..12d155f7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs index ed6014ec..f682eef1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs index 85476e3e..7bffeb0d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs index 42aa282b..f76d8fe7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs index 60e0f267..9c35f80e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs index 6216d3c5..4d419cf9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs index 0dc78f8f..d86c816b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs index 23757e15..adbda8ce 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs index 3c1f23ae..b235d713 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs index 3bb3d406..bc02ff9a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs index 3b9d3a3c..23082817 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs index 550debc6..1717d329 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs index 8fb6ff04..94d2113a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs index f4e7b057..74bc0596 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs index 9fa8bf18..972dee49 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs index 15160601..b22ba62d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs index 8ee0d5db..a76ff39a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSeedCbcEncryptDataParams.cs index 899b7804..938bf7ca 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackPrivateWrapParams.cs index ea6beab8..94e82e1f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs index e9dc435c..150977bd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs index 178a5147..1dd05cd8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs index e80f6e67..3956aef6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index 2a31dec5..db8525f0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs index 4943a858..e5bdfbe2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs index 8c5bd3d9..c2e792ee 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12MasterKeyDeriveParams.cs index ef8a500b..41fc8945 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs index 0dc5b222..f8607cfd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsMacParams.cs index 37e79bc2..b8faed5d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs index e67c0050..475d179f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs index b36ff2b7..0550200f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs index 3e680908..a71be49e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs index 8d7ce5e7..03ced36d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index e0e0bd5a..4e73884b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs index 4363ead2..98cc69b9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs index b35c6ff7..ac092ab8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs index ecdc222c..9387ae6a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs index 05836811..d5d2ad46 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs index 87034e6e..e1cee2a6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs index e60e845a..4147b415 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs index ec75b191..0863f15e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs index 3c5adac7..c0d45109 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs index 093166f5..43e7280a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs index e9bbc5d7..66c95009 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs index 2319a3d5..c00b0e1a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs index faf4968e..ce57c78b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs index 64e97772..81fcb1cc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs index 73502d16..a3116392 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs index dfa46d86..eb2d7328 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs index 0908248b..be7a10db 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs index 6bd690d0..1b4ff552 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs index 59bb72dc..c37c0634 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs index f7054468..89d66a21 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs index 1a86d8c8..09dc776e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs index 3e31d576..2d10c6b6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs index 0bf30b3c..864fa33d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCtrParams.cs index bb3b31cb..6a63bd39 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAriaCbcEncryptDataParams.cs index 8ba9c096..b12947d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index df63537b..ebaea399 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs index d5205ba3..444118a3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs index b5bca9d0..59790743 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCmsSigParams.cs index c16a17be..7dbb9e6c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs index 233012af..88e4e9d9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs index bcc872e1..c582366b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs index 8cdcd306..e3343e5f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs index 3c3bc7ad..9f85d1ea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs index d7c4534a..00bc8246 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs index 0e571748..c5a8162a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkExtractParams.cs index f158b8a3..1d11081d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs index 2c901a12..4f1e7da6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs index 55fba158..be72bb89 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs index 93f197ba..6a2a1af9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs index 06b04a91..3a6489d6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs index 203ffc1c..f3826638 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs index 8d5f7445..33c1912c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs index 425e6b8f..d523996f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs index e2bd1b07..583fd878 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs index 87cbbe2c..79f74a41 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs index d287c498..b47b0270 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs index 85e29741..a895fde3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs index dcc2af76..f7dabad0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs index a9ca4da1..5a627233 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs index 4f2b1dc4..a792d183 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs index 94af6ad9..29ea32ec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs index f436dfec..cb6d3b83 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs index a625a46c..edbb0f8c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs index f13529e0..63f5a8f2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs index e3ff1f4d..590493a3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs index 7fa4b92a..ffdfd8fe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs index b70e4835..dc0c7ce6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs index 8ff722fe..bb5a9970 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs index 88e8fe58..c2e81c8b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSeedCbcEncryptDataParams.cs index 30970bb1..30a56583 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackPrivateWrapParams.cs index 3b0b23bb..bcc4aec2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs index 7db71611..940a2d44 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs index 7925d94f..75517ddf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs index ae0c29f7..d4df442e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index dfc97ed8..d86d82c3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs index 9b18d2d7..3eb3bb0c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs index 285e6679..5843a264 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12MasterKeyDeriveParams.cs index 1db0f5a2..7d4e06e1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs index eb4cf970..9cd4ecac 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsMacParams.cs index c70ab267..0b0effec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs index 03a269ea..d7f505e8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs index 8386af45..c4d0d8c6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs index 544eb4c2..cc3373a3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs index 1d9a6796..53f96f6a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index bba3c948..d1e5d2b0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs index d9629775..a6f2ffe0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs index c8b3b163..965bd63d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs index 822cca31..90c940c4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs index 5bbf4c0d..b81f8604 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs index c7639808..04959d3a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs index c55b464d..9eaccf85 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs index 33bffb85..2e63970b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs index 6128ad91..fbcd416f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs index 1fd75e64..69d5e727 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs index cde9b398..4afffaff 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs index d53821fd..6979be88 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs index a620ec17..98a21744 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs index c42a8978..c9548d1f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs index b2c5990e..6ac1f731 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs index fe8e8343..f19a3d8f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs index 2c17f131..72f110a6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs index ec96687f..31f14033 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs index fa744f68..b17d4728 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/LibraryInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs index 4ce48322..fce3e52e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Mechanism.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs index cac01200..52014340 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs index 289921e0..90e19155 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs index 08348976..7d9a0c05 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCtrParams.cs index 2e10bc96..eaa33912 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAesCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAriaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAriaCbcEncryptDataParams.cs index 93cd392f..547a96aa 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAriaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkAriaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCbcEncryptDataParams.cs index c04d4d6c..f0bde7ec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs index 494545c3..1111ce0b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCamelliaCtrParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs index 7a977daa..67e12736 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCmsSigParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCmsSigParams.cs index 0280df07..71c43328 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCmsSigParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkCmsSigParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs index 55ef8891..89e12e8d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDesCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs index 6d42c138..224f7de3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkDsaParameterGenParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs index 8c0b9692..9d1a0283 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs index d29f21f7..8a3654d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs index 9d3a3e8f..2ec81ceb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcdhAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs index da0efd27..be452cf2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkEcmqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkExtractParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkExtractParams.cs index 05327465..c49e9307 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkExtractParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkExtractParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs index ab663ad4..2202c0c3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGcmParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs index 4cd121b9..1e4af1af 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs index d3e13df8..49b8ad5f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkGostR3410KeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs index 61865721..f63312c2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeaDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs index be4494c8..d0e380e7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyDerivationStringData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs index daa6e5f7..66361c2b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKeyWrapSetOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs index f76d7940..1d39039e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkKipParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs index afc8df45..4fe525fa 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkMacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs index ba3bfa9f..b306d389 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParam.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs index 93c699d5..48e179f6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs index 9142916d..7ce65062 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkOtpSignatureInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs index fad50228..478f414b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPbeParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs index 70ed2657..b705846d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs index 046f2d87..c7a42431 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkPkcs5Pbkd2Params2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs index f5ab076d..d05b7224 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs index 130760f2..1fae970d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs index 6787eb7d..93529948 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc2Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs index f3924311..e7101684 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5CbcParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs index d957c277..8ccd22c5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5MacGeneralParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs index ecabd363..403747d1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRc5Params.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs index a1015381..4e8ee83d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaAesKeyWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs index 20c95b59..2ea256c4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsOaepParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs index e545a1f7..bb751e8c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkRsaPkcsPssParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSeedCbcEncryptDataParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSeedCbcEncryptDataParams.cs index ef711af7..b9082b4e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSeedCbcEncryptDataParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSeedCbcEncryptDataParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackPrivateWrapParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackPrivateWrapParams.cs index 1a9a96c3..d48ba219 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackPrivateWrapParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackPrivateWrapParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs index d1a36b3b..32f76ed3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSkipjackRelayxParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs index 038e118b..d6c358af 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs index 8d22758a..dcab2247 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3MasterKeyDeriveParams.cs index b5941e2f..d3a321e8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs index 99b29a81..ca417cc8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkSsl3RandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs index b53dc713..c782afa0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12KeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12MasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12MasterKeyDeriveParams.cs index c71575e8..d37606e2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12MasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTls12MasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs index 040735a2..486e1365 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsKdfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsMacParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsMacParams.cs index e10866f9..1a5245de 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsMacParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsMacParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs index ced21d9d..95b34b53 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkTlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs index c1635094..5cdfb9a3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkVersion.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs index ed7d29d5..4b7890af 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatOut.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs index da9704a8..8838c7e4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsKeyMatParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsMasterKeyDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsMasterKeyDeriveParams.cs index 082207d1..1e088423 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsMasterKeyDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsMasterKeyDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs index eab55f34..b795ebbe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsPrfParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs index c41412fe..ee8809fe 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkWtlsRandomData.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs index 70debd16..c4348b4c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh1DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs index b901f8a7..7d370d60 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942Dh2DeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs index 35f78b82..8922cfcb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/MechanismParams/CkX942MqvDeriveParams.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs index 77e9d483..a107182f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs index 4fcbd67e..76b0ff90 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/ObjectHandle.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs index 91364baf..27a64200 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs index 1366e30f..dfc9f5bf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs index ad299cfe..ea2a0dbf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Session.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs index 42f55a66..a40b8ae9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs index 5edc23f6..dd31f19f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs index 81afc98f..a3c5bb71 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/Slot.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs index 98b1ae6b..465edd6c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs index 4f62e43a..3d5f594b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SlotInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs index e2926709..dc42a6e9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenFlags.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs index 5ae02e0a..b0b17913 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/TokenInfo.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs index a47bffa9..777a9731 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs index aa8ea56d..d56fe9ff 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_ATTRIBUTE_CLASS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs index 802fbcb6..cb02640c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_C_INITIALIZE_ARGS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs index f7403eb9..6485e5e8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_FUNCTION_LIST.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs index d675aecc..adc88aea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs index ef24b74a..a2fe3d24 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs index 04e296e7..50fed3e1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_MECHANISM_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs index 078cc155..28136d7c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SESSION_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs index 97a27216..c3dd0231 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_SLOT_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs index 23da6af8..a87d5281 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_TOKEN_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs index 98095273..b7758c7d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CK_VERSION.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs index 308973c8..81196902 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkaUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs index 90aab190..d059d225 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/CkmUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs index 024463d5..754fb124 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Delegates.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs index 449b53b7..eb6dd3de 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs index d2d152c4..767aef18 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_AES_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs index 81b0ff25..8826401e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs index aff7a119..8fcadc41 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs index 06fb9259..d8353f1d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs index 01af570f..81d0c243 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs index 44ec3889..d1b7ba1e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_CMS_SIG_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs index 691259a1..fa8a4f62 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs index 3f4ad1e8..cae0205f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs index 9a5d12ed..a532f773 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs index f85464d3..6c147f78 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs index 6ea3a607..d6214f33 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs index c7ffd3e9..9137f15f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs index 17273331..aa3f8755 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_EXTRACT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs index 7aa86210..236dae1f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs index 7d915b82..078bdcea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs index ac09772c..0e710cd8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs index f0d4ee2c..bfdc4dcf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEA_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs index 7619916a..c8df5085 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs index f3ca41fd..78ca4c27 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs index 70d4e31b..016da2a1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_KIP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs index 20c1e35c..0aa0cb14 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs index 868f88df..262db492 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs index 11a00406..40579130 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs index e9484e57..d034f5ff 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_OTP_SIGNATURE_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs index f6d4779b..22b9c73f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PBE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs index b0c1f0c6..2716e9bc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs index 3b220f2e..d40d0258 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs index c1ba5a0e..07ba6112 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs index daf5dd10..005bb412 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs index 6f601167..b04a6dcf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs index 869f88f9..d01058c8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs index 2d12c30e..5ebc9a4f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs index 87d6f4f3..b0e8340c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RC5_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs index 9c91a5eb..df0c1eb2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs index a7847a1a..ea2d7a5e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs index 0dd5c61e..60be463b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs index 9878b580..297c05fc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs index 2385bdc1..e7747722 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs index c153602d..693646b2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs index bef43e47..a1e46242 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs index d798d0aa..330e3c87 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs index 5a05f67d..ed9abbe1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs index 896864a8..8d940287 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_SSL3_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs index 535db5ce..52ee7e67 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs index 2b145f13..954a8285 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs index 1a9879df..0c0b68fc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_KDF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs index 5d4df7d7..f388606f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_MAC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs index bae794e0..7c1450e7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_TLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs index 507f2548..cef648ea 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs index 89707102..bfcd13b4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs index 2de693fc..dcda5e73 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs index b7f6e706..373afc3a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs index 588f6c69..8a9e73f0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_WTLS_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs index ebbc8e44..2a243072 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs index 737e2059..d3c45720 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs index 57862e0b..30d11690 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs index 8767b4ef..470a2a4a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs index c764ccfb..7dcb1dfd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs index 27ffb698..6be74778 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs index d850f77d..1321ab4e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs index 3d0f98b8..ff2ea8bc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_ATTRIBUTE_CLASS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs index 9c57783d..b4887398 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_C_INITIALIZE_ARGS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs index aa7ff406..d3775f6b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_FUNCTION_LIST.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs index 65973249..ef23586a 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs index 4eda2fca..8a8866c5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs index e562e610..6894dbfd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_MECHANISM_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs index 583663c6..1430dae5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SESSION_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs index a0de41f8..5630a77b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_SLOT_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs index c44e7d25..47295352 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_TOKEN_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs index d2350d65..4f33e7f0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CK_VERSION.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs index 14bf70a0..0b027b7d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkaUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs index ec2c833d..87d4795d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/CkmUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs index 048ba052..a26036c7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Delegates.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs index e21ed010..e08bb720 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs index 70c8a105..54f4025e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_AES_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs index c2335fd7..b6f9539f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs index bc729ff6..e6cce5c4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs index f5c88085..88aa12b9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs index 1f077bab..20c348cf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs index f5b2fd44..c6119f8b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_CMS_SIG_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs index 9114c671..81b682cc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs index 9f654745..5e1fcaf3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs index 7fe2878f..ed6cbb8d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs index 37521180..25cdcfcf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs index 68d65545..8c62d47e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs index f3f66eee..932c6cce 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs index 2e1b32ba..e940088e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_EXTRACT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs index 57c4228f..1d15ade1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs index ea3bdcc2..f5f20c19 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs index 903832bc..66368b5b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs index 159dcb79..ed86b5f1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEA_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs index 314c0f44..35b23097 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs index 190218fd..99bbc706 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs index 7c753fb4..834daadd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_KIP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs index c6f08253..09422608 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs index c205d5e1..cc2e64a8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs index 5fe29a39..aa849384 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs index d50e10e5..42416d85 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_OTP_SIGNATURE_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs index 29f7db6e..08efcb46 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PBE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs index 7699f7a8..d0c98ebc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs index 553b548b..3f86ed78 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs index 66901739..6f889447 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs index c9a3deae..77ffa509 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs index e795829c..828b8835 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs index a843fd60..12bfd2bc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs index d73c9fc2..9b0a2b8d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs index 2a8d08dd..3eccce23 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RC5_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs index 084652f6..45129fd4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs index 58f15352..92f0f865 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs index 9dcd5ac4..17068bf6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs index 973ed10c..8f30cfef 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs index 874ac39b..5e785d68 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs index d8294ea5..6ae17351 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs index 22c10110..423636ee 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs index 71c15b90..7991036c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs index 8c39c6bd..230fe91c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs index e70bef7e..a7867784 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_SSL3_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs index dc0eefe5..203986e0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs index 3c635754..0d559c50 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs index 5a4239b2..9c45f7bb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_KDF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs index 5ba9cde5..8f8292cc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_MAC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs index c714fbf8..10058d08 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_TLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs index 3ed158e4..615fc845 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs index ccf7b959..f3f904a1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs index 7a4da21f..07f8902f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs index d22a6bfd..ea634e57 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs index e9ad6e4b..24c2cddc 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_WTLS_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs index 52473fc7..809dc687 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs index 569d6dea..3311b8cd 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs index dbf9e95e..e5ecf193 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs index 1ee2205b..21daa176 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs index e430ef77..a3cbb4de 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs index 36714f46..52ba3114 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs index 0c0fbd41..7f4c8e02 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs index 3f9c9fa5..7580605e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_ATTRIBUTE_CLASS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs index 6bfd92c5..defeea08 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_C_INITIALIZE_ARGS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs index bed8a3ba..1b85deae 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_FUNCTION_LIST.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs index dd1314f9..b5bdd0c5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs index 424c6172..3e3fea3e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs index 5afb1b75..f7b00bd6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_MECHANISM_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs index 78da0a5a..089037b8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SESSION_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs index cb26ccb4..8f84024d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_SLOT_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs index 6849eae7..5e2a37f5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_TOKEN_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs index ae733c79..abe286a6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CK_VERSION.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs index c06a6d1b..a9c01b78 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkaUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs index 673b5e38..96609c18 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/CkmUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs index 8ba0b5ed..d75a7722 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Delegates.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs index fc4e92f4..b7185ae7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs index 2de38f40..4dc4d026 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_AES_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs index 0abb7287..7e655f7b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs index 17c2f807..c9b9e02f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs index 5b3c835d..d48029f4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs index 216e1cef..d795e65e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs index f7bc09c3..344490d3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_CMS_SIG_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs index fda44f4e..5c178c80 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs index 630ccbd2..2d5ae9fb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs index 4b12ca3d..59a6a520 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs index e453787b..0d88c499 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs index 09d4e3eb..0b1ca9d3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs index 418d2016..daa6d4e0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs index f0f38595..07995102 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_EXTRACT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs index c67c344c..a65c3a87 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs index 0f69591a..c1217fe2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs index 168ae965..e111058e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs index 3f7e7952..ebc39391 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEA_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs index 5f916349..7ff5c2fa 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs index 3bc6557a..908558e3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs index 7ab5fdcd..ecd9330c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_KIP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs index 9181dbbc..435a64f3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs index 349c6538..a7772a19 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs index bf29bc27..552cb493 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs index 49c71c57..252ca19f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_OTP_SIGNATURE_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs index 2a1e05d0..9ad65f1e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PBE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs index f8daa81b..abb7b432 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs index 3602868e..75a196d4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs index d3348f88..e3ddeb0b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs index 732d38da..3baac5a7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs index 854afefa..0cdf5c46 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs index f0eb9b82..61905c7d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs index b7ca1d29..08041c47 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs index d65f371a..43ec0c5e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RC5_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs index 77913b02..e65b53af 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs index 114c9eb7..928c65b9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs index faca995a..dbc558bb 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs index aaedf86f..fd27e83e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs index 8d65a36b..c7ac113c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs index a8fa5114..1fa61ee2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs index b58aa0b6..64b4bfa6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs index 676e5ae9..17d62c14 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs index 8e1e3dd6..3881eeac 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs index 717efa48..44b1f550 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_SSL3_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs index c44456d5..93e58828 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs index b13b5a97..eaf20882 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs index 0fe409d5..10b8f4ef 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_KDF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs index 3ba507b7..6863761b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_MAC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs index 8c376b10..3551e570 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_TLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs index 46cda9db..98c6240f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs index f8e062a2..20faec1c 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs index 2be026d3..7223b120 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs index a5e4874a..6095a7ef 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs index a3e165c1..c2438bf5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_WTLS_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs index 41c1262c..791c003e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs index 73e89c21..f897390f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs index 05330ffb..17a7b8bf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs index d7a56522..de22803d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs index 96af8741..054945f4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs index 19fc139e..303e77ce 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs index 04204dc0..291c6d89 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs index 8b40f0d2..c594b15d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_ATTRIBUTE_CLASS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs index c1fc2240..cefcc238 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_C_INITIALIZE_ARGS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs index 19ac068a..df3adbd0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_FUNCTION_LIST.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs index a0959b74..56430dc8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs index 169569cc..f503bbc7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs index e9c1cf9e..e0c59816 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_MECHANISM_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs index 1b41a763..0be4e6ed 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SESSION_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs index 96ae1d13..4b291122 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_SLOT_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs index 8682876f..8afe29ec 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_TOKEN_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs index 354626db..4e639f42 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CK_VERSION.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs index 8e1faa52..1709855d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkaUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs index 0b82b47b..23dd58c9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/CkmUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs index e6c5ee50..dac33861 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Delegates.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs index 9e3d2d22..f3f56f23 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs index 65722dd3..268ace37 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_AES_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs index 3e7d87e0..cb7a52b6 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ARIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs index 53892e42..df3bcd58 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs index b3946035..3721235b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CAMELLIA_CTR_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs index 7bf6dc58..415305d7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs index 2590ef31..219a15ac 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_CMS_SIG_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs index ef27d9ca..58abbe00 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DES_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs index 7b3498e5..cee500f1 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_DSA_PARAMETER_GEN_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs index ffd6e012..06583dd8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs index 9fd4ceae..77680d66 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs index 6472424f..27103473 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECDH_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs index 192a105a..fb979357 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_ECMQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs index 40d822d9..d2ecbfd3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_EXTRACT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs index 7d536e66..d16f5dca 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GCM_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs index 183ddba9..eb059e01 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs index 81c19da7..5868faf8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_GOSTR3410_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs index 506e339c..9bd8de9d 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEA_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs index 6d6f1e58..aa9207ab 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_DERIVATION_STRING_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs index e91d6702..e3bc64f7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KEY_WRAP_SET_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs index 28ebe74d..5d0c0220 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_KIP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs index cb772906..bfcd6faa 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs index 34107c8c..ea65d5f4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAM.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs index ba1f65a5..b8ae6faf 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs index 43089e6d..9d3bd9b7 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_OTP_SIGNATURE_INFO.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs index cdad4722..09a6e6e8 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PBE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs index 09a22696..1213b5f4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs index 4448b19f..32e0d83b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_PKCS5_PBKD2_PARAMS2.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs index f4470c9d..010da197 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs index a49c5fd1..47267a82 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs index 92a68ad5..5fbb672f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC2_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs index 11f4bc36..019d0945 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_CBC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs index f788c836..b5d0679b 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_MAC_GENERAL_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs index 7fac16e6..182ec0ce 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RC5_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs index 1e2f7b7b..be9f6b2e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_AES_KEY_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs index 63ce971d..a3038be2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_OAEP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs index ebeeca0c..d49268e3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_RSA_PKCS_PSS_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs index 83dd5a3d..2b52a739 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SEED_CBC_ENCRYPT_DATA_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs index 0d7e78a1..81f40cd0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_PRIVATE_WRAP_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs index f8499c3b..dc6088c4 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SKIPJACK_RELAYX_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs index ecdfb99e..a9961cf9 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs index 131a8b44..861b54f0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs index a4fda47f..c923fa90 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs index 2fcd215d..38644302 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_SSL3_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs index c20f3cec..c2129f4e 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs index 0cb43d7c..f69cbb82 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS12_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs index c5dd4cf9..84aa7402 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_KDF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs index fd07549d..a817ef8f 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_MAC_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs index eafa5f59..801d8957 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_TLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs index 2589cfae..8845a592 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_OUT.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs index 6105de40..ff5732be 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_KEY_MAT_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs index 35de8de8..a7621b50 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_MASTER_KEY_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs index 63339773..f29622d5 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_PRF_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs index 4e3ac1ee..715f5755 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_WTLS_RANDOM_DATA.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs index 862ee1b5..b45d6a54 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH1_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs index 190fd97a..0652d5b0 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_DH2_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs index 7388f00b..45d4ac26 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/MechanismParams/CK_X9_42_MQV_DERIVE_PARAMS.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs index 0364a42a..8f411481 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/NativeMethods.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs index 6931d9c3..c563a9f2 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs index ba9aa9a1..83818e18 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11UriUtils.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs index 3f959e01..77be1dba 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs index 8331a784..44730983 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs index 0e697c98..c4ef109a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_01_Pkcs11UriAndBuilderTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs index eb63c32f..ef1cfda3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Common/_02_CustomExceptionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs b/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs index 19fc87b1..4bbc74cd 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs index b651e473..50b6a113 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs index 158b2b4d..1bf01f62 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs index 3847f60d..5e51d5a6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_03_SlotListInfoAndEventTest.cs index 725756cc..d8f9be4a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs index dc367904..dd03933f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_05_MechanismListAndInfoTest.cs index b48c2258..97509dbe 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs index b604d4ab..0e001a4b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs index a75bb320..f4f3e867 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs index bd6b6550..eb4ada7b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs index 5d74a5d0..93586467 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs index 62f9cd5f..49d744d5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_11_SeedAndGenerateRandomTest.cs index 035bfc8f..864eefe6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs index b945c11b..91195914 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs index af7ece15..45b8a712 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs index 445f28d1..6abb2f2e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs index c3b1f484..2958cbc9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_16_GetAndSetAttributeValueTest.cs index 5aa87e75..379fc084 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs index 4f2273fa..7f1a0e4b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs index 5d1be47e..aa78dc0a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_19_EncryptAndDecryptTest.cs index 383a57f3..138d215a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs index f53ac2bb..df15c302 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_21_SignAndVerifyRecoverTest.cs index 4c9ec076..9f57ef65 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs index 12e9ad14..78f33ce1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs index c9cd8609..31759ee2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs index 88f4ae74..b1292ce0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs index 60573268..d2394c02 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_26_LegacyParallelFunctionsTest.cs index 42f41dde..ff1bde73 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs index 0dc0c0df..f9f56a52 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs index dac671b0..508a2c25 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs index 6c18e6a3..130ba9d1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_28_Pkcs11ClassExtensionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs index abdc6435..a6e1d2e6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs index b32edc83..5031dd75 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_30_SessionClassExtensionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs index d4e3cd66..cfde0bb3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs index 5e9555f6..a49eb08b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs index db2193bd..be77c102 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_03_SlotListInfoAndEventTest.cs index 894f596b..e0793635 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs index 10d10a86..c5610a58 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_05_MechanismListAndInfoTest.cs index 0df74b13..1cfd70f8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs index f170de3a..9df597c0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs index a7d5c948..a9c1d006 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs index 551d2b12..92795099 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_09_InitTokenAndPinTest.cs index 8a92b0b8..57becd28 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs index d34b1732..e11e9b94 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs index 2c08cc9f..771df257 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs index 905ca7ec..0ffc3ef6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_13_ObjectAttributeTest.cs index 01a6b297..4dbb1e0f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs index 5287bfd6..6f0e913d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs index 9fd8dc22..1dff52a4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs index 81bc246d..faa03540 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs index fc65c7bf..45111516 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs index 37a93526..54bdee60 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_19_EncryptAndDecryptTest.cs index 4e1716b2..e43bdcaf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs index 3b69e543..80f4c2aa 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs index 72e35600..41dd0612 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs index d4266035..f93a8c5e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs index 3e143e19..ad614c67 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs index 4e5ba56f..40a58909 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs index 1e417ef8..2af5db09 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs index 9ceb6251..9e8021cf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs index 2949c943..456b1780 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs index b4977152..f37542ef 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs index 54ee5197..0afb0bc3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs index fc0bc8b2..f39e4883 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs index 82317dea..d3c504c3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_03_SlotListInfoAndEventTest.cs index 3cc11444..d3016b04 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs index e698dd4f..e242d097 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_05_MechanismListAndInfoTest.cs index 8c27dbe6..7c74acbe 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs index 2f072717..2b2d7a61 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs index 4f6c0214..11c61c65 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs index a560b6b4..5f27237b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_09_InitTokenAndPinTest.cs index c445ff39..d22bf639 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs index 87b6ceff..c45b1460 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs index 00c81428..77b77827 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs index 3a103fde..fec9d20a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_13_ObjectAttributeTest.cs index 32402620..485be3d3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs index 30d7f55e..5754d336 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs index 8f42b485..d5f10d2a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs index 9f70cf5f..3ccd54f6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs index 6427eb05..1e33fe8f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs index 09bf610a..f1c0766c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_19_EncryptAndDecryptTest.cs index 5c405f3e..4217503a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs index bd3870bd..8f891807 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs index 87caf5b4..1a4a776c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs index 209497e2..d09912e1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs index 91489d30..70c18824 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs index f38f3bd2..27db6254 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs index cd6259f6..71dd8766 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs index 3206144e..f4947390 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs index 278ed9b9..7e6f9933 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs index 0c459892..6e15643b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI41/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs index 16a4fe8c..44a168b5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs index 187153b9..e674c172 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs index 5185e9a9..0f9a158c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_03_SlotListInfoAndEventTest.cs index f969e0ab..10bd198f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs index cb9e97dc..295b0a57 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_05_MechanismListAndInfoTest.cs index be1d2b94..ae148f8f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs index 9a4be62e..c1f3f196 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs index 592daf7f..9b4905ef 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs index 1fdc206c..3f2a62df 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_09_InitTokenAndPinTest.cs index a7bb1dd1..cb462294 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs index e1f34a13..1367a01f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs index 9aea6b91..16febe41 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs index e9b16b32..e2f9f661 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_13_ObjectAttributeTest.cs index 0790bea9..19e46263 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs index 5ea8b699..a8ac76a9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs index 8c2b984a..b1f330eb 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs index 644184f0..53236760 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs index 4089d39e..d55487ea 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs index e213663f..b1588856 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_19_EncryptAndDecryptTest.cs index 69859c00..4c06f1fd 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs index 28958778..f0f713e0 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs index 6d618038..929537ef 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs index 09d1e8a3..59943023 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs index c54c585d..93645dc6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs index 723dab58..96c32e63 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs index 248c0e7e..77c0e060 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs index 284d07c8..d96ff5c8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs index c94e286d..60956dff 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs index c98db6f3..508694b9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI80/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs index fdb3b5f0..7e908f31 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs index 4c1ec88f..51a0253f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs index e127b294..c92a711e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_03_SlotListInfoAndEventTest.cs index bef8f66e..f452f806 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs index def393ad..812ab9d2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_05_MechanismListAndInfoTest.cs index 8b71d31c..2b0d24b9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs index f88c4e78..2d0b6f6f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs index 5d36b97e..b77b8228 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs index b2e73d02..7310b89e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_09_InitTokenAndPinTest.cs index 432a8849..366ce44b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs index 0bc15b1b..f7432f0b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs index 090023f6..0d616332 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs index 4c9763e7..f045aac4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_13_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_13_ObjectAttributeTest.cs index e16e998d..66c49557 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_13_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_13_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs index 0cffd128..1c845433 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_14_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs index 0acc60ef..6f4779c1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_15_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs index f5a98d66..5f4f0abc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_16_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs index 7ed9ab15..542ba317 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_17_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs index 8a07d13c..49a862be 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_18_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_19_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_19_EncryptAndDecryptTest.cs index cca8fa86..5ec44704 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_19_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_19_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs index 193ed84f..f2edce2d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_20_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs index 8e356eb9..4a365ad8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_21_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs index 3fecb54c..2e1167c5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_22_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs index 8e15fb20..2f593732 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_23_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs index 98d50d08..6f22fcb2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_24_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs index beca5aa8..6a55de93 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_25_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs index 248bfd61..e05cfc05 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_26_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs index b4f021e7..2898d5f8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs index 30738a62..c86b4a97 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI81/_27b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs index 08834f79..de39f502 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs index 40cab202..da2ca5e7 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs index 5fc1450e..c1e69a33 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_03_SlotListInfoAndEventTest.cs index f08626df..77a75341 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs index 9256cdba..425f9022 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_05_MechanismListAndInfoTest.cs index 255a1c1d..6b151af5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs index c06a65ab..fbc2601e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs index 93f3e024..71871eec 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs index 0febb300..c405bc5b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs index f2033f3c..976b4ab4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs index bb577383..cfacc1e4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs index 70f17ece..45c8c793 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs index 3e8b35de..c36cd2ef 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs index be4d387f..85d0392d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_13_UnmanagedMemoryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs index d217afe5..512f6370 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_14_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs index 2f5857f3..4943bafb 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_15_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs index d38aa912..2bac4795 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_16_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs index 00d709e2..6be91c37 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_17_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs index 12b6f53b..4c04c8a7 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_18_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs index 99d4681b..1c66900d 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_19_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_20_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_20_EncryptAndDecryptTest.cs index 2bf5e277..8f071539 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_20_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_20_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs index 50e8eb75..12ed3028 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_21_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs index 2957b47b..871daea5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_22_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs index 8ed5b462..46fbe48b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_23_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs index f6511ee8..1a9a9e7f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_24_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs index fb3ce5f2..4976455e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_25_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs index e88a100c..7350d870 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_26_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs index c3c6b6cc..a341dc16 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_27_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs index f497db09..cc90c496 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs index bce8f153..4c4ab59c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI40/_28b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs index 01603369..eb0018e3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs index d157af60..243b10a6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs index bda1c4a5..92fec1b4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_03_SlotListInfoAndEventTest.cs index 33e0dcc3..65a3f621 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs index 7fb8a123..52de4da8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_05_MechanismListAndInfoTest.cs index f5b525bf..4b843088 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs index 957c4168..204c496b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs index d4bbbcea..efa877c6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs index 259e1ce7..d1a7a6bf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs index 4d71e774..19015b47 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs index 8f0ed092..4cbeff97 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs index 8103ab62..f5a3134b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs index 2d5ce0c4..7cd2befd 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs index f432d1a8..ab82d7b6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_13_UnmanagedMemoryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs index 58cf9da3..9e095dc3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_14_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs index d0e838d5..59479884 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_15_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs index 70b1be2a..c0fbfc67 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_16_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs index 816991e0..4b9b6be6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_17_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs index 11585c44..0436ff17 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_18_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs index 0d8e6f4b..38168c20 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_19_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_20_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_20_EncryptAndDecryptTest.cs index d8aa1794..ee77f2fc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_20_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_20_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs index 8ff84a34..9424eba9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_21_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs index 0cca0903..1b516ec1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_22_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs index e56ba98d..785943bd 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_23_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs index 3e14c0e6..795cce4b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_24_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs index e0106073..7576357f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_25_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs index 418bee14..a5c4acaa 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_26_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs index bee816bc..2cf5bcbb 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_27_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs index 74d6ea29..6fb263a8 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs index 677786aa..d8601544 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI41/_28b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs index 896b218b..12eec532 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs index 1c287ca8..95065490 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs index 79d6d06c..ce01fce1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_03_SlotListInfoAndEventTest.cs index fdbf064b..f9245423 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs index bea5a8a8..ee0894e3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_05_MechanismListAndInfoTest.cs index 1544d895..e52b83d2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs index 28e88d0e..0dc83c3e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs index ffc03837..4b1c7716 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs index 628a65de..260025cc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs index 8da8bad6..eb5c8fc1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs index 0802e950..58a4414e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs index 03005ccf..79dcb0cc 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs index 549cc53e..f10ef1e5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs index d728a62a..7177626b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_13_UnmanagedMemoryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs index f357235b..0c302e27 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_14_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs index b5b0505a..18d50a7f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_15_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs index 885f77cf..32239e4e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_16_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs index 7ae038bf..53ca27ac 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_17_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs index 1a8c6214..2601daaf 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_18_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs index 6f0d60b3..eff1104b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_19_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_20_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_20_EncryptAndDecryptTest.cs index 4b5620c6..b0255a01 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_20_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_20_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs index 3e317b29..5f5e5b6c 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_21_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs index c61142fa..9411a939 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_22_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs index fbf35215..10b5de3f 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_23_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs index 62e481d4..c7ba8b77 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_24_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs index f386c751..225a76c3 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_25_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs index c0a10f81..eeb9fb7a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_26_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs index 7b0503f6..e82cffe6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_27_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs index 85d43711..3857cee4 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs index d2795b3e..cd14f193 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI80/_28b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs index f92c181e..ac6620e2 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/Helpers.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs index bf5ef1d1..dabada72 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_01_InitializeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs index ff2ed37a..f33a3b06 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_02_GetInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_03_SlotListInfoAndEventTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_03_SlotListInfoAndEventTest.cs index 5d842c4d..fc41c9a5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_03_SlotListInfoAndEventTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_03_SlotListInfoAndEventTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs index 8df51326..cd3647a1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_04_TokenInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_05_MechanismListAndInfoTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_05_MechanismListAndInfoTest.cs index 4de4d5b5..5d68dbb5 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_05_MechanismListAndInfoTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_05_MechanismListAndInfoTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs index 7b3caea9..255b3d7b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_06_SessionTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs index 953c35b0..ebc16dda 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_07_OperationStateTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs index e23d6b72..721352e6 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_08_LoginTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs index c241175e..5d144b4e 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_09_InitTokenAndPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs index 3d1f05e5..6d0fde86 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_10_SetPinTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs index b6b56614..94e93dea 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_11_SeedAndGenerateRandomTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs index 0c68ab55..779ecea1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_12_DigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs index 319db088..556b6659 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_13_UnmanagedMemoryTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs index 1c650e81..e2da7679 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_14_ObjectAttributeTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs index ed10c01e..89350083 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_15_MechanismTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs index 8e7fcd2a..63641d02 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_16_CreateCopyDestroyObjectTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs index aae9dc13..dd27dbe7 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_17_GetAndSetAttributeValueTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs index d11fbac2..ad0212ca 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_18_ObjectFindingTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs index 312ce522..80c88e95 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_19_GenerateKeyAndKeyPairTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_20_EncryptAndDecryptTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_20_EncryptAndDecryptTest.cs index 57c82a34..c1f5ab0a 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_20_EncryptAndDecryptTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_20_EncryptAndDecryptTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs index cf781eb5..cdc70d48 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_21_SignAndVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs index e724d7f2..8f2305c1 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_22_SignAndVerifyRecoverTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs index c0defc08..353ece03 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_23_DigestEncryptAndDecryptDigestTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs index 64616ff3..ed16d751 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_24_SignEncryptAndDecryptVerifyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs index 62b89739..7a9ef3c9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_25_WrapAndUnwrapKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs index e72e5548..e7aee8df 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_26_DeriveKeyTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs index 8e59d0d8..7a1e77b9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_27_LegacyParallelFunctionsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs index 34296775..85af55e9 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs index 8079e918..34579548 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/LowLevelAPI81/_28b_Pkcs11UriUtilsTest.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs index 08f57e32..2ada9387 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs @@ -7,7 +7,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2019 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs index 450a3ed8..ae501f0b 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From 5f99e8d221f469fa5547ee757a14db70c3b0e9e4 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 13 Dec 2020 22:02:50 +0100 Subject: [PATCH 22/27] Updated version information to 4.1.2 --- appveyor.yml | 2 +- build/Pkcs11Interop.nuspec | 2 +- doc/doxygen/Doxyfile | 2 +- .../Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 ++-- .../Properties/AssemblyInfo.cs | 6 +++--- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 6 +++--- .../Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11Interop/Properties/AssemblyInfo.cs | 4 ++-- src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt | 4 ++++ src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs | 4 ++-- .../Pkcs11InteropTests/Properties/AssemblyInfo.cs | 4 ++-- 14 files changed, 29 insertions(+), 25 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 17bd7dc9..fbd2c523 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 4.1.1-{build} +version: 4.1.2-{build} image: Visual Studio 2017 branches: only: diff --git a/build/Pkcs11Interop.nuspec b/build/Pkcs11Interop.nuspec index 0918474e..f4983e30 100644 --- a/build/Pkcs11Interop.nuspec +++ b/build/Pkcs11Interop.nuspec @@ -2,7 +2,7 @@ Pkcs11Interop - 4.1.1 + 4.1.2 Pkcs11Interop Jaroslav Imrich Jaroslav Imrich diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index 1ecb955a..a3c379f2 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Pkcs11Interop # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 4.1.1 +PROJECT_NUMBER = 4.1.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs index 67ef01e9..36be14e6 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("302998a1-5cba-4da7-a7d7-55dd3ae6fb5c")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs index cd8f8d3b..bd003c82 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -13,5 +13,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("7102332a-1ac0-4823-8fcc-5037550e715d")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs index 86614911..d682967b 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs @@ -12,6 +12,6 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("e7f90384-d5e2-4451-bdbe-7836ea107175")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] -[assembly: AssemblyInformationalVersion("4.1.1")] \ No newline at end of file +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] +[assembly: AssemblyInformationalVersion("4.1.2")] \ No newline at end of file diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs index 24a69e3e..3495f9c2 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,6 +12,6 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("af7dfa22-9f88-4497-bf4f-ddd2eda16fb5")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] -[assembly: AssemblyInformationalVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] +[assembly: AssemblyInformationalVersion("4.1.2")] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs index 696f9de9..1c0c85cb 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("65e0c9a3-964c-4442-b695-2a18ceffc3f9")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs index 35294319..25192722 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("e4b6e4b2-8248-4f9f-8e6f-71c487d9c050")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs index e2534866..74855b36 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("a810d426-39f4-4632-acbe-cccbaa2bbfb2")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs index b25c4512..735cac61 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -11,5 +11,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("a4d564dd-8912-4b22-99ca-ddcd00ab440a")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt b/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt index 90bf2f4e..21865ca3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt +++ b/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt @@ -1,3 +1,7 @@ +Pkcs11Interop 4.1.2 (2020-12-13) + - #172 - Fixed problem with too small buffer used for encryption + and decryption of streams + Pkcs11Interop 4.1.1 (2019-03-31) - #115 - Fixed automatic platform detection on new versions of Android and updated Android TargetFrameworkVersion to v8.0 (API level 26) diff --git a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs index 77be1dba..bb2f8543 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("752ec6ad-5efc-408f-8563-9e134d982a59")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs index 2ada9387..12e404ac 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: Guid("915698de-fa4d-42f3-91f2-98ce11fff1fc")] -[assembly: AssemblyVersion("4.1.1")] -[assembly: AssemblyFileVersion("4.1.1")] +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] From 9c13734a6777798131ade3f11afca53fb235f25b Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 13 Dec 2020 22:56:21 +0100 Subject: [PATCH 23/27] Update build scripts for VS2019 --- build/build-monoandroid2.3.bat | 12 ++++-------- build/build-net20.bat | 12 ++++-------- build/build-net40.bat | 12 ++++-------- build/build-net45.bat | 12 ++++-------- build/build-netstandard1.3.bat | 8 ++++---- build/build-netstandard2.0.bat | 8 ++++---- build/build-sl5.bat | 12 ++++-------- build/build-xamarinios1.0.bat | 12 ++++-------- build/build-xamarinmac2.0.bat | 12 ++++++------ 9 files changed, 38 insertions(+), 62 deletions(-) diff --git a/build/build-monoandroid2.3.bat b/build/build-monoandroid2.3.bat index d26d4728..42fb1016 100644 --- a/build/build-monoandroid2.3.bat +++ b/build/build-monoandroid2.3.bat @@ -3,17 +3,13 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize Visual Studio build environment: -@rem - Visual Studio 2017 Community/Professional/Enterprise is the preferred option -@rem - Visual Studio 2015 is the fallback option (which might or might not work) +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% diff --git a/build/build-net20.bat b/build/build-net20.bat index db865a58..79e872f5 100644 --- a/build/build-net20.bat +++ b/build/build-net20.bat @@ -3,17 +3,13 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize Visual Studio build environment: -@rem - Visual Studio 2017 Community/Professional/Enterprise is the preferred option -@rem - Visual Studio 2015 is the fallback option (which might or might not work) +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% diff --git a/build/build-net40.bat b/build/build-net40.bat index 588368a8..a17be032 100644 --- a/build/build-net40.bat +++ b/build/build-net40.bat @@ -3,17 +3,13 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize Visual Studio build environment: -@rem - Visual Studio 2017 Community/Professional/Enterprise is the preferred option -@rem - Visual Studio 2015 is the fallback option (which might or might not work) +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% diff --git a/build/build-net45.bat b/build/build-net45.bat index 69098fca..a849d78c 100644 --- a/build/build-net45.bat +++ b/build/build-net45.bat @@ -3,17 +3,13 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize Visual Studio build environment: -@rem - Visual Studio 2017 Community/Professional/Enterprise is the preferred option -@rem - Visual Studio 2015 is the fallback option (which might or might not work) +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% diff --git a/build/build-netstandard1.3.bat b/build/build-netstandard1.3.bat index de0e33cf..73f15ceb 100644 --- a/build/build-netstandard1.3.bat +++ b/build/build-netstandard1.3.bat @@ -6,13 +6,13 @@ @rem Argument "--skip-cleaning" skips solution cleaning @set arg2=%2 -@rem Initialize build environment of Visual Studio 2017 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% diff --git a/build/build-netstandard2.0.bat b/build/build-netstandard2.0.bat index e3dc7409..a4c79d00 100644 --- a/build/build-netstandard2.0.bat +++ b/build/build-netstandard2.0.bat @@ -6,13 +6,13 @@ @rem Argument "--skip-cleaning" skips solution cleaning @set arg2=%2 -@rem Initialize build environment of Visual Studio 2017 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% diff --git a/build/build-sl5.bat b/build/build-sl5.bat index e806c1ec..254b75df 100644 --- a/build/build-sl5.bat +++ b/build/build-sl5.bat @@ -6,17 +6,13 @@ @rem Add signtool.exe location to PATH @set PATH=%PATH%;C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\ -@rem Initialize Visual Studio build environment: -@rem - Visual Studio 2017 Community/Professional/Enterprise is the preferred option -@rem - Visual Studio 2015 is the fallback option (which might or might not work) +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% diff --git a/build/build-xamarinios1.0.bat b/build/build-xamarinios1.0.bat index b1c59903..0c28b3ce 100644 --- a/build/build-xamarinios1.0.bat +++ b/build/build-xamarinios1.0.bat @@ -3,17 +3,13 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize Visual Studio build environment: -@rem - Visual Studio 2017 Community/Professional/Enterprise is the preferred option -@rem - Visual Studio 2015 is the fallback option (which might or might not work) +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools\vsvars32.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" -@if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% diff --git a/build/build-xamarinmac2.0.bat b/build/build-xamarinmac2.0.bat index 49944d75..798c36aa 100644 --- a/build/build-xamarinmac2.0.bat +++ b/build/build-xamarinmac2.0.bat @@ -6,13 +6,13 @@ @rem Argument "--skip-cleaning" skips solution cleaning @set arg2=%2 -@rem Initialize build environment of Visual Studio 2017 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise @set tools= -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% -@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @if not defined tools goto :error call %tools% @@ -60,7 +60,7 @@ call :disablexamarinmac :enablexamarinmac @rem Use "MSBuild.Sdk.Extras" instead of "Microsoft.NET.Sdk" which does not support "xamarinmac2.0" target framework set csprojfile=..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Pkcs11Interop.csproj -powershell -Command "(Get-Content %csprojfile%).replace('Microsoft.NET.Sdk', 'MSBuild.Sdk.Extras/1.6.65') | Set-Content -Encoding ASCII %csprojfile%" +powershell -Command "(Get-Content %csprojfile%).replace('Microsoft.NET.Sdk', 'MSBuild.Sdk.Extras/3.0.22') | Set-Content -Encoding ASCII %csprojfile%" powershell -Command "(Get-Content %csprojfile%).replace('', ';xamarinmac2.0') | Set-Content -Encoding ASCII %csprojfile%" set assemblyinfofile=..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Properties\AssemblyInfo.cs powershell -Command "(Get-Content %assemblyinfofile%).replace('NetStandard version', 'Mac version') | Set-Content -Encoding ASCII %assemblyinfofile%" @@ -69,7 +69,7 @@ powershell -Command "(Get-Content %assemblyinfofile%).replace('NetStandard versi :disablexamarinmac @rem Revert from "MSBuild.Sdk.Extras" back to "Microsoft.NET.Sdk" set csprojfile=..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Pkcs11Interop.csproj -powershell -Command "(Get-Content %csprojfile%).replace('MSBuild.Sdk.Extras/1.6.65', 'Microsoft.NET.Sdk') | Set-Content -Encoding ASCII %csprojfile%" +powershell -Command "(Get-Content %csprojfile%).replace('MSBuild.Sdk.Extras/3.0.22', 'Microsoft.NET.Sdk') | Set-Content -Encoding ASCII %csprojfile%" powershell -Command "(Get-Content %csprojfile%).replace(';xamarinmac2.0', '') | Set-Content -Encoding ASCII %csprojfile%" set assemblyinfofile=..\src\Pkcs11Interop.NetStandard\Pkcs11Interop\Properties\AssemblyInfo.cs powershell -Command "(Get-Content %assemblyinfofile%).replace('Mac version', 'NetStandard version') | Set-Content -Encoding ASCII %assemblyinfofile%" From 2295e46f45819485b52c2c21300eadc2ed069eb1 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 13 Dec 2020 23:06:49 +0100 Subject: [PATCH 24/27] Use latest code-signing certificate --- build/sign-all.bat | 2 +- build/sign-nuget.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/sign-all.bat b/build/sign-all.bat index 47e6642b..f1aaf07e 100644 --- a/build/sign-all.bat +++ b/build/sign-all.bat @@ -3,7 +3,7 @@ set SIGNTOOL="C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\signtool.exe" @rem Define signing options -set CERTHASH=ef1bfeaa474bb078923831bf7732186673a5b5c9 +set CERTHASH=9ccadd88b898155baef4c7b8ff7b17595275b1bb set TSAURL=http://time.certum.pl/ set LIBNAME=Pkcs11Interop set LIBURL=https://www.pkcs11interop.net/ diff --git a/build/sign-nuget.bat b/build/sign-nuget.bat index 0657cbd8..a3abfb6f 100644 --- a/build/sign-nuget.bat +++ b/build/sign-nuget.bat @@ -3,7 +3,7 @@ set NUGET=c:\nuget\nuget.exe @rem Define signing options -set CERTHASH=ef1bfeaa474bb078923831bf7732186673a5b5c9 +set CERTHASH=9ccadd88b898155baef4c7b8ff7b17595275b1bb set TSAURL=http://time.certum.pl/ %NUGET% sign Pkcs11Interop*.nupkg -CertificateFingerprint %CERTHASH% -Timestamper %TSAURL% || goto :error From 466a50812dd3b0f7efb562fc41f5d3807b20c31e Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Sun, 13 Dec 2020 23:22:51 +0100 Subject: [PATCH 25/27] AppVeyor may need VS2017 --- build/build-monoandroid2.3.bat | 8 +++++++- build/build-net20.bat | 8 +++++++- build/build-net40.bat | 8 +++++++- build/build-net45.bat | 8 +++++++- build/build-netstandard1.3.bat | 8 +++++++- build/build-netstandard2.0.bat | 8 +++++++- build/build-sl5.bat | 8 +++++++- build/build-xamarinios1.0.bat | 8 +++++++- build/build-xamarinmac2.0.bat | 8 +++++++- 9 files changed, 63 insertions(+), 9 deletions(-) diff --git a/build/build-monoandroid2.3.bat b/build/build-monoandroid2.3.bat index 42fb1016..d8dd9714 100644 --- a/build/build-monoandroid2.3.bat +++ b/build/build-monoandroid2.3.bat @@ -3,8 +3,14 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" diff --git a/build/build-net20.bat b/build/build-net20.bat index 79e872f5..c89d85ae 100644 --- a/build/build-net20.bat +++ b/build/build-net20.bat @@ -3,8 +3,14 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" diff --git a/build/build-net40.bat b/build/build-net40.bat index a17be032..43a5f20a 100644 --- a/build/build-net40.bat +++ b/build/build-net40.bat @@ -3,8 +3,14 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" diff --git a/build/build-net45.bat b/build/build-net45.bat index a849d78c..61062265 100644 --- a/build/build-net45.bat +++ b/build/build-net45.bat @@ -3,8 +3,14 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" diff --git a/build/build-netstandard1.3.bat b/build/build-netstandard1.3.bat index 73f15ceb..5b1ea828 100644 --- a/build/build-netstandard1.3.bat +++ b/build/build-netstandard1.3.bat @@ -6,8 +6,14 @@ @rem Argument "--skip-cleaning" skips solution cleaning @set arg2=%2 -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" diff --git a/build/build-netstandard2.0.bat b/build/build-netstandard2.0.bat index a4c79d00..99346eb3 100644 --- a/build/build-netstandard2.0.bat +++ b/build/build-netstandard2.0.bat @@ -6,8 +6,14 @@ @rem Argument "--skip-cleaning" skips solution cleaning @set arg2=%2 -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" diff --git a/build/build-sl5.bat b/build/build-sl5.bat index 254b75df..a7f6b773 100644 --- a/build/build-sl5.bat +++ b/build/build-sl5.bat @@ -6,8 +6,14 @@ @rem Add signtool.exe location to PATH @set PATH=%PATH%;C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool\ -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" diff --git a/build/build-xamarinios1.0.bat b/build/build-xamarinios1.0.bat index 0c28b3ce..864e5124 100644 --- a/build/build-xamarinios1.0.bat +++ b/build/build-xamarinios1.0.bat @@ -3,8 +3,14 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" diff --git a/build/build-xamarinmac2.0.bat b/build/build-xamarinmac2.0.bat index 798c36aa..bc477370 100644 --- a/build/build-xamarinmac2.0.bat +++ b/build/build-xamarinmac2.0.bat @@ -6,8 +6,14 @@ @rem Argument "--skip-cleaning" skips solution cleaning @set arg2=%2 -@rem Initialize build environment of Visual Studio 2019 Community/Professional/Enterprise +@rem Initialize build environment of Visual Studio 2017 or 2019 Community/Professional/Enterprise @set tools= +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% +@set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsMSBuildCmd.bat" +@if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsMSBuildCmd.bat" @if exist %tmptools% set tools=%tmptools% @set tmptools="c:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\Tools\VsMSBuildCmd.bat" From 7060df08a45881a8535027864d242938ad93615e Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 2 Feb 2021 21:45:47 +0100 Subject: [PATCH 26/27] Enable Linux and macOS builds of Pkcs11Interop 4 on AppVeyor (#179) --- .travis.yml | 24 ------------------------ README.md | 1 - appveyor.yml | 48 ++++++++++++++++++++++++++++++++++++------------ 3 files changed, 36 insertions(+), 37 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 0a854dd2..00000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -language: csharp - -matrix: - include: - - os: linux - dist: trusty - sudo: required - dotnet: 2.1.4 - mono: none - - os: osx - osx_image: xcode9.3 - dotnet: 2.1.4 - mono: none - -branches: - only: - - master - - 4.x-maintenance - -script: - - dotnet --info - - dotnet restore ./src/Pkcs11Interop.NetStandard/ - - dotnet build ./src/Pkcs11Interop.NetStandard/ - - dotnet test -f netcoreapp2.0 ./src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/ diff --git a/README.md b/README.md index e4ea327c..78cb6914 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ Pkcs11Interop [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/Pkcs11Interop/Pkcs11Interop/blob/4.x-maintenance/LICENSE.md) [![AppVeyor](https://ci.appveyor.com/api/projects/status/lb1jxb4t4203g3t9/branch/4.x-maintenance?svg=true)](https://ci.appveyor.com/project/pkcs11interop/pkcs11interop/branch/4.x-maintenance) -[![Travis](https://travis-ci.org/Pkcs11Interop/Pkcs11Interop.svg?branch=4.x-maintenance)](https://travis-ci.org/Pkcs11Interop/Pkcs11Interop) [![NuGet](https://img.shields.io/badge/nuget-pkcs11interop-blue.svg)](https://www.nuget.org/packages/Pkcs11Interop/) [![Stack Overflow](https://img.shields.io/badge/stack-pkcs11interop-blue.svg)](https://stackoverflow.com/questions/tagged/pkcs11interop) [![Twitter](https://img.shields.io/badge/twitter-p11interop-blue.svg)](https://twitter.com/p11interop) diff --git a/appveyor.yml b/appveyor.yml index fbd2c523..93d9eaa3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,23 +1,40 @@ version: 4.1.2-{build} -image: Visual Studio 2017 + branches: only: - master - 4.x-maintenance + skip_tags: true + environment: matrix: - - Platform: net20 - - Platform: net40 - - Platform: net45 - - Platform: sl5 - - Platform: netstandard1.3 - - Platform: netstandard2.0 - - Platform: monoandroid2.3 - - Platform: xamarinios1.0 - - Platform: xamarinmac2.0 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: net20 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: net40 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: net45 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: sl5 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: netstandard1.3 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: netstandard2.0 + - APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004 + Platform: netstandard2.0 + - APPVEYOR_BUILD_WORKER_IMAGE: macos + Platform: netstandard2.0 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: monoandroid2.3 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: xamarinios1.0 + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + Platform: xamarinmac2.0 + install: - cmd: IF "%Platform%"=="monoandroid2.3" (powershell -File ./build/appveyor-switch-android-sdk.ps1) + build_script: - cmd: IF "%Platform%"=="net20" (cd build && build-net20.bat --with-tests) - cmd: IF "%Platform%"=="net40" (cd build && build-net40.bat --with-tests) @@ -28,11 +45,18 @@ build_script: - cmd: IF "%Platform%"=="monoandroid2.3" (cd build && build-monoandroid2.3.bat) - cmd: IF "%Platform%"=="xamarinios1.0" (cd build && build-xamarinios1.0.bat) - cmd: IF "%Platform%"=="xamarinmac2.0" (cd build && build-xamarinmac2.0.bat) +- sh: dotnet --info && dotnet restore -p:Configuration=Release -p:Platform="Any CPU" -v normal ./src/Pkcs11Interop.NetStandard/ && dotnet build -p:Configuration=Release -p:Platform="Any CPU" -v normal ./src/Pkcs11Interop.NetStandard/ + test_script: - cmd: IF "%Platform%"=="net20" (nunit-console-x86 .\src\Pkcs11Interop\Pkcs11InteropTests\bin\Release\Pkcs11InteropTests.dll) - cmd: IF "%Platform%"=="net40" (nunit-console .\src\Pkcs11Interop\Pkcs11InteropTests\bin\Release\Pkcs11InteropTests.dll) -- cmd: IF "%Platform%"=="netstandard1.3" (dotnet vstest .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\bin\Release\netcoreapp1.0\Pkcs11Interop.DotNetCore.Tests.dll --Framework:".NETCoreApp,Version=v1.0") -- cmd: IF "%Platform%"=="netstandard2.0" (dotnet vstest .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\bin\Release\netcoreapp2.0\Pkcs11Interop.DotNetCore.Tests.dll --Framework:".NETCoreApp,Version=v2.0") +- cmd: IF "%Platform%"=="netstandard1.3" (cd .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\ && nuget install Appveyor.TestLogger && cd ..\..\..) +- cmd: IF "%Platform%"=="netstandard1.3" (dotnet vstest .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\bin\Release\netcoreapp1.0\Pkcs11Interop.DotNetCore.Tests.dll --Framework:".NETCoreApp,Version=v1.0" --TestAdapterPath:. --logger:Appveyor) +- cmd: IF "%Platform%"=="netstandard2.0" (cd .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\ && nuget install Appveyor.TestLogger && cd ..\..\..) +- cmd: IF "%Platform%"=="netstandard2.0" (dotnet vstest .\src\Pkcs11Interop.NetStandard\Pkcs11Interop.DotNetCore.Tests\bin\Release\netcoreapp2.0\Pkcs11Interop.DotNetCore.Tests.dll --Framework:".NETCoreApp,Version=v2.0" --TestAdapterPath:. --logger:Appveyor) +- sh: cd ./src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/ && nuget install Appveyor.TestLogger && cd ../../.. +- sh: dotnet test -f netcoreapp2.0 --test-adapter-path:. --logger:Appveyor ./src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/ + artifacts: - path: build/$(Platform) name: $(Platform) \ No newline at end of file From daae5433a8be84797ec38b5a62b717ad0af768e4 Mon Sep 17 00:00:00 2001 From: Jaroslav Imrich Date: Tue, 2 Feb 2021 23:28:38 +0100 Subject: [PATCH 27/27] Minor AppVeyor changes --- appveyor.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 93d9eaa3..240de22f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,8 +1,7 @@ -version: 4.1.2-{build} +version: 4-{build} branches: only: - - master - 4.x-maintenance skip_tags: true