diff --git a/README.md b/README.md index 1fcdecfe..78cb6914 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,10 @@ 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) -[![Coverity](https://img.shields.io/coverity/scan/2961.svg)](https://scan.coverity.com/projects/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) [![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 diff --git a/appveyor.yml b/appveyor.yml index d9bb3c98..240de22f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,33 +1,61 @@ -version: 4.0.0-{build} -image: Visual Studio 2015 +version: 4-{build} + branches: only: - - master + - 4.x-maintenance + skip_tags: true + environment: matrix: - - Platform: net20 - - Platform: net40 - - Platform: net45 - - Platform: sl5 + - 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 - - Platform: monoandroid2.3 - - Platform: xamarinios1.0 + - 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-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) - 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) +- 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\Pkcs11Interop.DotNetCore.Tests.dll) +- 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 diff --git a/build/Pkcs11Interop.nuspec b/build/Pkcs11Interop.nuspec index c2428006..f4983e30 100644 --- a/build/Pkcs11Interop.nuspec +++ b/build/Pkcs11Interop.nuspec @@ -2,7 +2,7 @@ Pkcs11Interop - 4.0.0 + 4.1.2 Pkcs11Interop Jaroslav Imrich Jaroslav Imrich @@ -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-2020 The Pkcs11Interop Project pkcs pkcs11 security crypto cryptography smartcard hsm @@ -21,10 +21,12 @@ - + + + \ No newline at end of file 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..de6c3bc1 --- /dev/null +++ b/build/appveyor-switch-android-sdk.ps1 @@ -0,0 +1,5 @@ +$file = 'src\Pkcs11Interop.Android\Pkcs11Interop\Pkcs11Interop.csproj' +$s1 = 'False' +$s2 = 'True' + +(Get-Content $file).replace($s1, $s2) | Set-Content $file diff --git a/build/build-all.bat b/build/build-all.bat index 89864764..e950129a 100644 --- a/build/build-all.bat +++ b/build/build-all.bat @@ -8,8 +8,10 @@ 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 +call build-xamarinmac2.0.bat %arg1% || goto :error @echo *** BUILD ALL SUCCESSFUL *** @endlocal 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/build/build-monoandroid2.3.bat b/build/build-monoandroid2.3.bat index 7b197c09..d8dd9714 100644 --- a/build/build-monoandroid2.3.bat +++ b/build/build-monoandroid2.3.bat @@ -3,18 +3,20 @@ @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 2017 or 2019 Community/Professional/Enterprise @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% +@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" +@if exist %tmptools% set tools=%tmptools% +@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% @echo on @@ -27,19 +29,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-net20.bat b/build/build-net20.bat index db865a58..c89d85ae 100644 --- a/build/build-net20.bat +++ b/build/build-net20.bat @@ -3,18 +3,20 @@ @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 2017 or 2019 Community/Professional/Enterprise @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% +@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" +@if exist %tmptools% set tools=%tmptools% +@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% @echo on diff --git a/build/build-net40.bat b/build/build-net40.bat index 588368a8..43a5f20a 100644 --- a/build/build-net40.bat +++ b/build/build-net40.bat @@ -3,18 +3,20 @@ @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 2017 or 2019 Community/Professional/Enterprise @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% +@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" +@if exist %tmptools% set tools=%tmptools% +@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% @echo on diff --git a/build/build-net45.bat b/build/build-net45.bat index 69098fca..61062265 100644 --- a/build/build-net45.bat +++ b/build/build-net45.bat @@ -3,18 +3,20 @@ @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 2017 or 2019 Community/Professional/Enterprise @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% +@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" +@if exist %tmptools% set tools=%tmptools% +@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% @echo on diff --git a/build/build-netstandard1.3.bat b/build/build-netstandard1.3.bat index 7a2b4f2e..5b1ea828 100644 --- a/build/build-netstandard1.3.bat +++ b/build/build-netstandard1.3.bat @@ -3,7 +3,10 @@ @rem Argument "--with-tests" forces the build of test project @set arg1=%1 -@rem Initialize build environment of Visual Studio 2017 Community/Professional/Enterprise +@rem Argument "--skip-cleaning" skips solution cleaning +@set arg2=%2 + +@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% @@ -11,6 +14,12 @@ @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" +@if exist %tmptools% set tools=%tmptools% +@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% @echo on @@ -18,28 +27,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 -@rem Build Pkcs11Interop.NetStandard project -msbuild ..\src\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard\Pkcs11Interop.NetStandard.csproj ^ - /p:Configuration=Release /p:Platform=AnyCPU /target:Build || 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=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.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\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..99346eb3 --- /dev/null +++ b/build/build-netstandard2.0.bat @@ -0,0 +1,64 @@ +@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 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" +@if exist %tmptools% set tools=%tmptools% +@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% +@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/create-nuget.bat b/build/build-nuget.bat similarity index 52% rename from build/create-nuget.bat rename to build/build-nuget.bat index 63535630..5dc5fd53 100644 --- a/build/create-nuget.bat +++ b/build/build-nuget.bat @@ -11,8 +11,10 @@ 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 +mkdir nuget\lib\xamarinmac2.0 || goto :error @rem Copy assemblies to output directories copy net20\Pkcs11Interop.dll nuget\lib\net20 || goto :error @@ -21,14 +23,18 @@ 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 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 +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 @@ -38,11 +44,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/build-sl5.bat b/build/build-sl5.bat index 5dfd5c7a..a7f6b773 100644 --- a/build/build-sl5.bat +++ b/build/build-sl5.bat @@ -6,18 +6,20 @@ @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 2017 or 2019 Community/Professional/Enterprise @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% +@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" +@if exist %tmptools% set tools=%tmptools% +@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% @echo on @@ -29,8 +31,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 +43,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..864e5124 100644 --- a/build/build-xamarinios1.0.bat +++ b/build/build-xamarinios1.0.bat @@ -3,18 +3,20 @@ @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 2017 or 2019 Community/Professional/Enterprise @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% +@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" +@if exist %tmptools% set tools=%tmptools% +@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% @echo on @@ -27,19 +29,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/build-xamarinmac2.0.bat b/build/build-xamarinmac2.0.bat new file mode 100644 index 00000000..bc477370 --- /dev/null +++ b/build/build-xamarinmac2.0.bat @@ -0,0 +1,82 @@ +@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 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" +@if exist %tmptools% set tools=%tmptools% +@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% +@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/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%" +@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/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%" +@exit /b 0 diff --git a/build/sign-all.bat b/build/sign-all.bat index 1406bf2b..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=d5de31ea974f5ea8581d633eeffa8f3ea0d479bb +set CERTHASH=9ccadd88b898155baef4c7b8ff7b17595275b1bb set TSAURL=http://time.certum.pl/ set LIBNAME=Pkcs11Interop set LIBURL=https://www.pkcs11interop.net/ @@ -13,26 +13,30 @@ 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 ^ +netstandard2.0\Pkcs11Interop.dll ^ +monoandroid2.3\Pkcs11Interop.dll ^ +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% ^ 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 ^ +netstandard2.0\Pkcs11Interop.dll ^ +monoandroid2.3\Pkcs11Interop.dll ^ +xamarinios1.0\Pkcs11Interop.dll ^ +xamarinmac2.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 diff --git a/build/sign-nuget.bat b/build/sign-nuget.bat new file mode 100644 index 00000000..a3abfb6f --- /dev/null +++ b/build/sign-nuget.bat @@ -0,0 +1,19 @@ +@setlocal + +set NUGET=c:\nuget\nuget.exe + +@rem Define signing options +set CERTHASH=9ccadd88b898155baef4c7b8ff7b17595275b1bb +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 diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index 0f939433..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.0.0 +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/doc/doxygen/footer.html b/doc/doxygen/footer.html index 3bc519f0..446f7a25 100644 --- a/doc/doxygen/footer.html +++ b/doc/doxygen/footer.html @@ -1,9 +1,9 @@ \ No newline at end of file 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"> + - - - - - - + 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..7aaade2b 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Pkcs11Interop.Android.Tests.csproj @@ -15,8 +15,8 @@ true Resources\Resource.Designer.cs Off - True - v6.0 + False + v8.0 Properties\AndroidManifest.xml @@ -29,6 +29,9 @@ 4 True None + false + false + false pdbonly @@ -897,9 +900,9 @@ - + {e70d0cee-348c-4311-a087-753871275eb9} - Pkcs11Interop.Android + Pkcs11Interop 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.Android.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs index 1da8aa11..36be14e6 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop.Android.Tests/Properties/AssemblyInfo.cs @@ -8,10 +8,10 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] 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..ba02d1f9 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android/Pkcs11Interop.Android.csproj +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Pkcs11Interop.csproj @@ -10,12 +10,12 @@ Library Properties Net.Pkcs11Interop - Pkcs11Interop.Android + Pkcs11Interop 512 Resources\Resource.Designer.cs Off False - v2.3 + v8.0 true @@ -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 67% rename from src/Pkcs11Interop.Android/Pkcs11Interop.Android/Properties/AssemblyInfo.cs rename to src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs index 10c4de28..bd003c82 100644 --- a/src/Pkcs11Interop.Android/Pkcs11Interop.Android/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Android/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -3,15 +3,15 @@ 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")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] 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..c5672d02 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 @@ -19,13 +18,13 @@ - + - - - + + + diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs index 82cbecc5..d682967b 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop.DotNetCore.Tests/Properties/AssemblyInfo.cs @@ -7,11 +7,11 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] +[assembly: AssemblyInformationalVersion("4.1.2")] \ No newline at end of file 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 99% rename from src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.csproj rename to src/Pkcs11Interop.NetStandard/Pkcs11Interop/Pkcs11Interop.csproj index 42c9041c..d060c5d9 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard.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 @@ -16,6 +16,9 @@ false false false + + + True ..\..\Pkcs11Interop\Pkcs11Interop\Pkcs11Interop.snk False @@ -2168,4 +2171,4 @@ - \ No newline at end of file + diff --git a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs similarity index 58% rename from src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Properties/AssemblyInfo.cs rename to src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs index a5e982ac..3495f9c2 100644 --- a/src/Pkcs11Interop.NetStandard/Pkcs11Interop.NetStandard/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.NetStandard/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -1,17 +1,17 @@ -using System.Reflection; +using System.Reflection; 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")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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")] \ No newline at end of file +[assembly: AssemblyVersion("4.1.2")] +[assembly: AssemblyFileVersion("4.1.2")] +[assembly: AssemblyInformationalVersion("4.1.2")] 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.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs index caaa4eaf..1c0c85cb 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight.Tests/Properties/AssemblyInfo.cs @@ -7,10 +7,10 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] 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 66% rename from src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight/Properties/AssemblyInfo.cs rename to src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs index 21be3e5e..25192722 100644 --- a/src/Pkcs11Interop.Silverlight/Pkcs11Interop.Silverlight/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.Silverlight/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -2,15 +2,15 @@ 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")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] 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.Tests/Properties/AssemblyInfo.cs b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs index 39624045..74855b36 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS.Tests/Properties/AssemblyInfo.cs @@ -6,10 +6,10 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] 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 64% rename from src/Pkcs11Interop.iOS/Pkcs11Interop.iOS/Properties/AssemblyInfo.cs rename to src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs index 7306f4f9..735cac61 100644 --- a/src/Pkcs11Interop.iOS/Pkcs11Interop.iOS/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop.iOS/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -1,15 +1,15 @@ 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")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt b/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt index b0814ca1..21865ca3 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt +++ b/src/Pkcs11Interop/Pkcs11Interop/CHANGELOG.txt @@ -1,16 +1,34 @@ +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) + - #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 + - #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 +37,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 +47,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 +109,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 +127,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/Common/AppType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/AppType.cs index df6c565e..f7c42e88 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 83cf8c01..8acd70af 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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/CK.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/CK.cs index a0db1cf7..f6757e17 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c3958818 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7402990f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..48f05d72 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e629df5c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a6a8c0ce 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9444b5cd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..44a2e441 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9704da99 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..008ecd45 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fab08a65 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..baa6f4ca 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..34de9091 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1f420e90 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..12327236 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..120a16d4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c70c9872 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..901efc69 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4556e30b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..53851f37 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9c8b938e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 e39f8f52..d1399a42 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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,34 +147,19 @@ 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 - /// - /// 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("libdl", 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)] - [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. /// /// 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 +169,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/Common/Pkcs11Exception.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Exception.cs index 21f7df8a..1caca9a6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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/Pkcs11Uri.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/Pkcs11Uri.cs index 832409e2..fb33b196 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..284242b2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5325d767 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..25d7db5b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7d6b0470 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..426c673d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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 - } } } diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/SessionType.cs index 66f17159..81fc66cd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5576c9c9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 493fbc48..2b88be03 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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"); diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedLibrary.cs index 8e1cec0c..1443e208 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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); diff --git a/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs b/src/Pkcs11Interop/Pkcs11Interop/Common/UnmanagedMemory.cs index 40c30a7a..43f6f6cf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f8ff07b7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1541fbfe 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3b3553f6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e510f47c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6149084b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..341c8b1e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..34e5386d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cca9dfc3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e60a0126 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2c346bc9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..91aa6466 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d4ee1676 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a67fcca0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4414e202 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2aa257dd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7d66dc69 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..69f39849 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9f524f7d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a70ba8d2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..12df6345 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b1e46009 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e3e07f79 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..49b1124e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..58146ed2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..facc5b6a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..39eede88 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a372e9a0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..529e8af4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ca89980e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..16b33b86 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..07568b0e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8bfc2c36 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..18bf2920 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d60156ea 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..bfd0e442 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6d219d8c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2879990d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..27334f34 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1574181b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d79838fd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8609b41e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f3627904 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d622fddb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d71ad219 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e62c7808 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a1526dd2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d86119f5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b4cd5bfe 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d8310609 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..139d6ebc 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9abfed6f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4271163b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7aa60398 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..abdbdcf9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d525f42c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e95505fd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ad782744 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..44f7f58e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..51525693 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5b054366 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fd923a11 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..31bc3779 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e94e9c5d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7be06813 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..156d48d8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d456964b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7b2393cc 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..921c210b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..44b5e2eb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ffaf7340 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..451349ed 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..841e2b09 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..12c717e5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9187314d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1fff443b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..20f14ab0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4e0bf744 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..347b818e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5beecc16 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f8c78376 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fba2d1cc 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0c2d4a27 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a89f8dc6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6268449b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..96780347 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..04bfc4e0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..db8edd95 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..bab5cb43 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e146a85f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..aedd32a7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4ecc48c9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7e32d4b3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a48cab93 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1bda03b8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1e505b4f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7d4caa8a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b3367f9e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0de7b33c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..41d52655 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..28a3fc89 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c081218a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dd9165f1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d0667523 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..253daec2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f3994907 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5be3dc3d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c499b86a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ec720c0c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..bad37b73 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..af5de2dd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9b1b4fca 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..56052b04 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6d013ff8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..712cbfeb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e81e6031 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5c1b4c3d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5d7ce26c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ce8155c4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9c0def78 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f27bc48d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f99de8aa 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b4bd4602 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..22f661ed 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2b363e37 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..55306902 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f29be8cf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1d110196 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8d9bc202 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8f821c70 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..295ce3a3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7fc8a36b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e7289367 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..28a47ff9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fdd73ca0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4a1b3ad8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..751da4cb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a847560d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d01024a6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6391ec4d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d27e48df 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ac267a70 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..59d0b7fe 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9ca438bf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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_DecryptUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } @@ -1573,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)); } @@ -1728,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)); } @@ -1895,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)); } @@ -2074,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/HighLevelAPI40/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI40/SessionFlags.cs index 7885fe95..96ee5045 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..55326cb6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..aacfae78 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..39228644 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1633ff1c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8860001c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a2ad9d8a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..576a53db 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f5c051ef 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c27b9193 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1087a9d7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..04fdad1a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a1098e4b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0fad05b5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5cc63f5e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1066f06a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3745802a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..24c71de1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..96800406 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..88093792 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0a050fde 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fd6e6bf2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..38bfd602 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..487f2dd3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..11011c12 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8e928ee7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2ea1c41e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e78afd7e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..83acb2d0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..db3f6dec 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..28e3e970 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..12d155f7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f682eef1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7bffeb0d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f76d8fe7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9c35f80e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4d419cf9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d86c816b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..adbda8ce 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b235d713 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..bc02ff9a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..23082817 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1717d329 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..94d2113a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..74bc0596 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..972dee49 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b22ba62d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a76ff39a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..938bf7ca 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..94e82e1f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..150977bd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1dd05cd8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3956aef6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..db8525f0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e5bdfbe2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c2e792ee 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..41fc8945 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f8607cfd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b8faed5d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..475d179f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0550200f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a71be49e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..03ced36d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4e73884b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..98cc69b9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ac092ab8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9387ae6a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d5d2ad46 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e1cee2a6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4147b415 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0863f15e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c0d45109 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..43e7280a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..66c95009 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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_DecryptUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } @@ -1573,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)); } @@ -1728,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)); } @@ -1895,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)); } @@ -2074,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/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI41/SessionFlags.cs index 8938d3c5..c00b0e1a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ce57c78b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..81fcb1cc 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a3116392 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..eb2d7328 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..be7a10db 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1b4ff552 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c37c0634 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..89d66a21 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..09dc776e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2d10c6b6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..864fa33d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6a63bd39 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b12947d5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ebaea399 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..444118a3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..59790743 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7dbb9e6c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..88e4e9d9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c582366b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e3343e5f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9f85d1ea 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..00bc8246 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c5a8162a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1d11081d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4f1e7da6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..be72bb89 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6a2a1af9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3a6489d6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f3826638 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..33c1912c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d523996f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..583fd878 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..79f74a41 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b47b0270 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a895fde3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f7dabad0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5a627233 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a792d183 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..29ea32ec 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cb6d3b83 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..edbb0f8c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..63f5a8f2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..590493a3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ffdfd8fe 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dc0c7ce6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..bb5a9970 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c2e81c8b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..30a56583 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..bcc4aec2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..940a2d44 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..75517ddf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d4df442e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d86d82c3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3eb3bb0c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5843a264 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7d4e06e1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9cd4ecac 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0b0effec 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d7f505e8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c4d0d8c6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cc3373a3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..53f96f6a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d1e5d2b0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a6f2ffe0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..965bd63d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..90c940c4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b81f8604 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..04959d3a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9eaccf85 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2e63970b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fbcd416f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..69d5e727 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4afffaff 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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_DecryptUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } @@ -1573,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)); } @@ -1728,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)); } @@ -1895,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)); } @@ -2074,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/HighLevelAPI80/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI80/SessionFlags.cs index cabdc276..6979be88 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..98a21744 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c9548d1f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6ac1f731 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f19a3d8f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..72f110a6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..31f14033 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b17d4728 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fce3e52e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..52014340 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..90e19155 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7d9a0c05 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..eaa33912 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..547a96aa 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f0bde7ec 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1111ce0b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..67e12736 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..71c43328 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..89e12e8d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..224f7de3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9d1a0283 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8a3654d5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2ec81ceb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..be452cf2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c49e9307 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2202c0c3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1e4af1af 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..49b8ad5f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f63312c2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d0e380e7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..66361c2b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1d39039e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4fe525fa 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b306d389 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..48e179f6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7ce65062 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..478f414b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b705846d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c7a42431 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d05b7224 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1fae970d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..93529948 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e7101684 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8ccd22c5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..403747d1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4e8ee83d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2ea256c4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..bb751e8c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b9082b4e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d48ba219 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..32f76ed3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d6c358af 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dcab2247 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d3a321e8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ca417cc8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c782afa0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d37606e2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..486e1365 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1a5245de 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..95b34b53 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5cdfb9a3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4b7890af 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8838c7e4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1e088423 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b795ebbe 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ee8809fe 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c4348b4c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7d370d60 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8922cfcb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a107182f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..76b0ff90 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..27a64200 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dfc9f5bf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ea2a0dbf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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_DecryptUpdate", rv); + } + outputStream.Write(part, 0, Convert.ToInt32(partLen)); } @@ -1573,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)); } @@ -1728,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)); } @@ -1895,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)); } @@ -2074,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/SessionFlags.cs b/src/Pkcs11Interop/Pkcs11Interop/HighLevelAPI81/SessionFlags.cs index 39a70656..a40b8ae9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dd31f19f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a3c5bb71 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..465edd6c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3d5f594b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dc42a6e9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b0b17913 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..777a9731 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..adc88aea 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a2fe3d24 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b7758c7d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..81196902 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d059d225 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..754fb124 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 957a106e..470a2a4a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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/LowLevelAPI40/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI40/Pkcs11.cs index 18fa3e03..7dcb1dfd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6be74778 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1321ab4e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ef23586a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8a8866c5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4f33e7f0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0b027b7d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..87d4795d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a26036c7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 2b76a3f1..21daa176 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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/LowLevelAPI41/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI41/Pkcs11.cs index 0817ef6d..a3cbb4de 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..52ba3114 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7f4c8e02 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b5bdd0c5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3e3fea3e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..abe286a6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a9c01b78 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..96609c18 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d75a7722 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 ef1d0f03..de22803d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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/LowLevelAPI80/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI80/Pkcs11.cs index e41dd370..054945f4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..303e77ce 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..291c6d89 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..56430dc8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f503bbc7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4e639f42 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1709855d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..23dd58c9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dac33861 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..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-2017 The Pkcs11Interop Project + * Copyright 2012-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 c39b1019..8f411481 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs b/src/Pkcs11Interop/Pkcs11Interop/LowLevelAPI81/Pkcs11.cs index 63a927b3..c563a9f2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..83818e18 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..bb2f8543 100644 --- a/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11Interop/Properties/AssemblyInfo.cs @@ -7,10 +7,10 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Common/Helpers.cs index 12a00d6f..44730983 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c4ef109a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 82203b2d..ef1cfda3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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/ExtensionAttribute.cs b/src/Pkcs11Interop/Pkcs11InteropTests/ExtensionAttribute.cs index e7358112..4bbc74cd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..50b6a113 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1bf01f62 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5e51d5a6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d8f9be4a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dd03933f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..97509dbe 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0e001a4b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f4f3e867 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..eb4ada7b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..93586467 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..49d744d5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..864eefe6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..91195914 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..45b8a712 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6abb2f2e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2958cbc9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..379fc084 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7f1a0e4b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..aa78dc0a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..138d215a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..df15c302 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9f57ef65 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..78f33ce1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..31759ee2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b1292ce0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d2394c02 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ff1bde73 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f9f56a52 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..508a2c25 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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 dc5195d8..130ba9d1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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); } @@ -408,7 +414,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 +475,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 +539,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 +600,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/HighLevelAPI/_29_SlotClassExtensionTest.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI/_29_SlotClassExtensionTest.cs index 5dad7471..a6e1d2e6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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..5031dd75 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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); } diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs b/src/Pkcs11Interop/Pkcs11InteropTests/HighLevelAPI40/Helpers.cs index f3f5f883..cfde0bb3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a49eb08b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..be77c102 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e0793635 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c5610a58 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1cfd70f8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9df597c0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a9c1d006 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..92795099 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..57becd28 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e11e9b94 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..771df257 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0ffc3ef6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4dbb1e0f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6f0e913d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1dff52a4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..faa03540 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..45111516 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..54bdee60 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e43bdcaf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..80f4c2aa 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..41dd0612 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f93a8c5e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ad614c67 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..40a58909 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2af5db09 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9e8021cf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..456b1780 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f37542ef 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0afb0bc3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f39e4883 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d3c504c3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d3016b04 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e242d097 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7c74acbe 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2b2d7a61 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..11c61c65 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5f27237b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d22bf639 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c45b1460 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..77b77827 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fec9d20a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..485be3d3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5754d336 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d5f10d2a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3ccd54f6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1e33fe8f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f1c0766c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4217503a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8f891807 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1a4a776c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d09912e1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..70c18824 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..27db6254 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..71dd8766 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f4947390 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7e6f9933 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6e15643b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..44a168b5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e674c172 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0f9a158c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..10bd198f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..295b0a57 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ae148f8f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c1f3f196 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9b4905ef 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3f2a62df 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cb462294 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1367a01f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..16febe41 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e2f9f661 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..19e46263 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a8ac76a9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b1f330eb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..53236760 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d55487ea 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b1588856 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4c06f1fd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f0f713e0 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..929537ef 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..59943023 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..93645dc6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..96c32e63 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..77c0e060 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d96ff5c8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..60956dff 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..508694b9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7e908f31 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..51a0253f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c92a711e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f452f806 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..812ab9d2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2b0d24b9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2d0b6f6f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b77b8228 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7310b89e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..366ce44b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f7432f0b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0d616332 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f045aac4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..66c49557 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1c845433 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6f4779c1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5f4f0abc 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..542ba317 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..49a862be 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5ec44704 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f2edce2d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4a365ad8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2e1167c5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2f593732 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6f22fcb2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6a55de93 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e05cfc05 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2898d5f8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c86b4a97 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..de39f502 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..da2ca5e7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c1e69a33 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..77a75341 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..425f9022 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6b151af5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fbc2601e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..71871eec 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c405bc5b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..976b4ab4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cfacc1e4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..45c8c793 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c36cd2ef 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..85d0392d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..512f6370 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4943bafb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2bac4795 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6be91c37 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4c04c8a7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1c66900d 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8f071539 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..12ed3028 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..871daea5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..46fbe48b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1a9a9e7f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4976455e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7350d870 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a341dc16 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cc90c496 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4c4ab59c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..eb0018e3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..243b10a6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..92fec1b4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..65a3f621 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..52de4da8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4b843088 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..204c496b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..efa877c6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d1a7a6bf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..19015b47 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4cbeff97 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f5a3134b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7cd2befd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ab82d7b6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9e095dc3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..59479884 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c0fbfc67 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4b9b6be6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0436ff17 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..38168c20 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ee77f2fc 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9424eba9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..1b516ec1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..785943bd 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..795cce4b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7576357f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..a5c4acaa 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2cf5bcbb 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6fb263a8 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..d8601544 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..12eec532 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..95065490 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ce01fce1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f9245423 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ee0894e3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e52b83d2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0dc83c3e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..4b1c7716 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..260025cc 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..eb5c8fc1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..58a4414e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..79dcb0cc 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f10ef1e5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7177626b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..0c302e27 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..18d50a7f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..32239e4e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..53ca27ac 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..2601daaf 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..eff1104b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..b0255a01 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5f5e5b6c 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..9411a939 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..10b5de3f 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c7ba8b77 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..225a76c3 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..eeb9fb7a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e82cffe6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..3857cee4 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cd14f193 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ac6620e2 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dabada72 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..f33a3b06 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..fc41c9a5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cd3647a1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5d68dbb5 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..255b3d7b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ebc16dda 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..721352e6 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..5d144b4e 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..6d0fde86 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..94e93dea 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..779ecea1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..556b6659 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e2da7679 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..89350083 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..63641d02 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..dd27dbe7 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ad0212ca 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..80c88e95 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..c1f5ab0a 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..cdc70d48 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..8f2305c1 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..353ece03 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..ed16d751 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7a9ef3c9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..e7aee8df 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..7a1e77b9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..85af55e9 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..34579548 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-2020 The Pkcs11Interop Project * * Licensed under the Apache 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..12e404ac 100644 --- a/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs +++ b/src/Pkcs11Interop/Pkcs11InteropTests/Properties/AssemblyInfo.cs @@ -7,10 +7,10 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pkcs11Interop")] -[assembly: AssemblyCopyright("Copyright 2012-2017 The Pkcs11Interop Project")] +[assembly: AssemblyCopyright("Copyright 2012-2020 The Pkcs11Interop Project")] [assembly: AssemblyTrademark("")] [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.2")] +[assembly: AssemblyFileVersion("4.1.2")] diff --git a/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs b/src/Pkcs11Interop/Pkcs11InteropTests/Settings.cs index 49470d42..ae501f0b 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-2020 The Pkcs11Interop Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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;