diff --git a/.github/README.adoc b/.github/README.adoc index 11983d5..b217db2 100644 --- a/.github/README.adoc +++ b/.github/README.adoc @@ -1,9 +1,7 @@ //// Execute `make readme` after editing /README.adoc //// -:toc-title: Table of Contents -:toc: -:toclevels: 2 +:doctype: book :source-highlighter: prettify :testdir: ../../Tests @@ -12,6 +10,32 @@ Execute `make readme` after editing /README.adoc = OpenHealthCardKit +++++ +
+ Table of Contents +
    +
  1. + About The Project + +
  2. +
  3. + Getting Started + +
  4. +
  5. Usage
  6. +
  7. License
  8. +
  9. Contact
  10. +
+
+++++ + +== About The Project + Controlling/Use-case framework for accessing smart cards of the telematic infrastructure. == Introduction @@ -22,51 +46,71 @@ and a German Health Card (elektronische Gesundheitskarte) using an NFC, Blue Too This document describes the functionalitiy and structure of OpenHealthCardKit. -== API Documentation +== Overview -Generated API docs are available at https://swiftpackageindex.com/gematik/ref-OpenHealthCardKit[Swift Package Index]: +OpenHealthCardKit bundles submodules that provide the functionality +necessary for accessing and interacting with German Health Cards via a mobile iOS device. -* HealthCardControl (tbd) -* https://swiftpackageindex.com/gematik/ref-OpenHealthCardKit/main/documentation/healthcardaccess[HealthCardAccess] -* https://swiftpackageindex.com/gematik/ref-OpenHealthCardKit/main/documentation/nfccardreaderprovider[NFCCardReaderProvider] -* https://swiftpackageindex.com/gematik/ref-OpenHealthCardKit/main/documentation/cardreaderproviderapi[CardReaderProviderApi] +OpenHealthCardKit consists of the submodules -NOTE: As of now the automatic API doc generation for `HealthCardControl` is broken. It's possible to generate it manually via Xcode: Select the target `HealthCardControl` and select `Product -> Build Documentation`. +- CardReaderProviderApi +- HealthCardAccess +- HealthCardControl +- NFCCardReaderProvider + +As a reference for the usage of each submodule see also the `IntegrationTests`. + +=== Release Notes +See `link:../ReleaseNotes.md[ReleaseNotes]` for all information regarding the (newest) releases. == Getting Started OpenHealthCardKit requires Swift 5.6. -=== Setup for integration +=== Prerequisites + +- Swift 5.6 or later +- Xcode (for iOS development) +- Swift Package Manager, Carthage, or manual integration + +=== Installation -- **Swift Package Manager:** Put this in your `Package.swift`: +==== Swift Package Manager - .package(url: "https://github.com/gematik/ref-OpenHealthCardKit", from: "5.6.0"), +Put this in your `Package.swift`: -- **Carthage:** Put this in your `Cartfile`: +[source,swift] +---- +.package(url: "https://github.com/gematik/ref-OpenHealthCardKit", from: "5.6.0"), +---- - github "gematik/ref-openHealthCardKit" ~> 5.0 +==== Carthage -=== Setup for development +Put this in your `Cartfile`: + +---- +github "gematik/ref-openHealthCardKit" ~> 5.0 +---- + +==== Setup for Development Run `$ make setup` to start developing locally. This will make sure all the dependencies are put in place and the Xcode-project will be generated and/or overwritten. Dependencies are a mix of SPM (Swift Package Manager) and Carthage right now. The Xcode-project is generated using `xcodegen`. The more complex build configuration(s) is done with the help of Fastlane. See the `./fastlane` directory for full setup. -== Overview +== Usage -OpenHealthCardKit bundles submodules that provide the functionality -necessary for accessing and interacting with German Health Cards via a mobile iOS device. +== API Documentation -OpenHealthCardKit consists of the submodules +Generated API docs are available at https://swiftpackageindex.com/gematik/ref-OpenHealthCardKit[Swift Package Index]: -- CardReaderProviderApi -- HealthCardAccess -- HealthCardControl -- NFCCardReaderProvider +* HealthCardControl (tbd) +* https://swiftpackageindex.com/gematik/ref-OpenHealthCardKit/main/documentation/healthcardaccess[HealthCardAccess] +* https://swiftpackageindex.com/gematik/ref-OpenHealthCardKit/main/documentation/nfccardreaderprovider[NFCCardReaderProvider] +* https://swiftpackageindex.com/gematik/ref-OpenHealthCardKit/main/documentation/cardreaderproviderapi[CardReaderProviderApi] -As a reference for the usage of each submodule see also the `IntegrationTests`. +NOTE: As of now the automatic API doc generation for `HealthCardControl` is broken. It's possible to generate it manually via Xcode: Select the target `HealthCardControl` and select `Product -> Build Documentation`. [#CardReaderProviderApi] === CardReaderProviderApi @@ -323,6 +367,7 @@ The `NFCHealthCardSession` also gives you an endpoint to invalidate the underlyi return } ---- + [#NFCDemo] === NFCDemo @@ -332,16 +377,27 @@ said framework to connect to and establish a secure communications channel with The App consist out of two screens/views. The first one will prompt the user for the CAN number. The second prompts for the PIN. This PIN is verified on the card against `mrpinHome` when the `connect` button is tapped. +For more examples or in-depth documentation, please refer to the included user guide sections above. + == License -Copyright 2023 gematik GmbH +Copyright 2020-2025 gematik GmbH + +Apache License, Version 2.0 -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +See the `link:../LICENSE[LICENSE]` for the specific language governing permissions and limitations under the License -See the link:./LICENSE[LICENSE] for the specific language governing permissions and limitations under the License. +== Additional Notes and Disclaimer from gematik GmbH -Unless required by applicable law the software is provided "as is" without warranty of any kind, either express or implied, including, but not limited to, the warranties of fitness for a particular purpose, merchantability, and/or non-infringement. The authors or copyright holders shall not be liable in any manner whatsoever for any damages or other claims arising from, out of or in connection with the software or the use or other dealings with the software, whether in an action of contract, tort, or otherwise. +. Copyright notice: Each published work result is accompanied by an explicit statement of the license conditions for use. These are regularly typical conditions in connection with open source or free software. Programs described/provided/linked here are free software, unless otherwise stated. +. Permission notice: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +.. The copyright notice (Item 1) and the permission notice (Item 2) shall be included in all copies or substantial portions of the Software. +.. The software is provided "as is" without warranty of any kind, either express or implied, including, but not limited to, the warranties of fitness for a particular purpose, merchantability, and/or non-infringement. The authors or copyright holders shall not be liable in any manner whatsoever for any damages or other claims arising from, out of or in connection with the software or the use or other dealings with the software, whether in an action of contract, tort, or otherwise. +.. The software is the result of research and development activities, therefore not necessarily quality assured and without the character of a liable product. For this reason, gematik does not provide any support or other user assistance (unless otherwise stated in individual cases and without justification of a legal obligation). Furthermore, there is no claim to further development and adaptation of the results to a more current state of the art. +. Gematik may remove published results temporarily or permanently from the place of publication at any time without prior notice or justification. +. Please note: Parts of this code may have been generated using AI-supported technology. Please take this into account, especially when troubleshooting, for security analyses and possible adjustments. -The software is the result of research and development activities, therefore not necessarily quality assured and without the character of a liable product. For this reason, gematik does not provide any support or other user assistance (unless otherwise stated in individual cases and without justification of a legal obligation). Furthermore, there is no claim to further development and adaptation of the results to a more current state of the art. +== Contact -Gematik may remove published results temporarily or permanently from the place of publication at any time without prior notice or justification. +This software is currently being tested to ensure its technical quality and legal compliance. Your feedback is highly valued. +If you find any issues or have any suggestions or comments, or if you see any other ways in which we can improve, please reach out to: ospo@gematik.de diff --git a/.swiftlint.yml b/.swiftlint.yml index c2fb8bb..f2de1ef 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -72,5 +72,5 @@ custom_rules: file_header: required_pattern: | \/\/ - \/\/ Copyright \(c\) \d{4} gematik GmbH + \/\/ Copyright \(Change Date see Readme\), gematik GmbH \/\/ \ No newline at end of file diff --git a/CardSimulationTestKit/.swiftlint.yml b/CardSimulationTestKit/.swiftlint.yml index db60cff..503c52e 100644 --- a/CardSimulationTestKit/.swiftlint.yml +++ b/CardSimulationTestKit/.swiftlint.yml @@ -55,5 +55,5 @@ custom_rules: file_header: required_pattern: | \/\/ - \/\/ Copyright \(c\) \d{4} gematik GmbH + \/\/ Copyright \(Change Date see Readme\), gematik GmbH \/\/ \ No newline at end of file diff --git a/CardSimulationTestKit/Sources/AEXMLExt/AEXMLElement+Root.swift b/CardSimulationTestKit/Sources/AEXMLExt/AEXMLElement+Root.swift index 16e743e..02f658c 100644 --- a/CardSimulationTestKit/Sources/AEXMLExt/AEXMLElement+Root.swift +++ b/CardSimulationTestKit/Sources/AEXMLExt/AEXMLElement+Root.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Card/SimulatorCard.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Card/SimulatorCard.swift index dc123f8..85552f8 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Card/SimulatorCard.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Card/SimulatorCard.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Card/SimulatorCardChannel.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Card/SimulatorCardChannel.swift index 276f2e4..2738092 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Card/SimulatorCardChannel.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Card/SimulatorCardChannel.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Logger.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Logger.swift index 4b5744c..1d52046 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Logger.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Logger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import OSLog diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Provider/SimulatorCardReaderProvider.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Provider/SimulatorCardReaderProvider.swift index 789b64d..f270d69 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Provider/SimulatorCardReaderProvider.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Provider/SimulatorCardReaderProvider.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Terminal/SimulatorCardReader.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Terminal/SimulatorCardReader.swift index f8c87d5..8c606d4 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Terminal/SimulatorCardReader.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Terminal/SimulatorCardReader.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Terminal/SimulatorCardReaderController.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Terminal/SimulatorCardReaderController.swift index 5094a7e..feb5577 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Terminal/SimulatorCardReaderController.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/Terminal/SimulatorCardReaderController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/Data+BerTLV.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/Data+BerTLV.swift index 99dcb2c..f962004 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/Data+BerTLV.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/Data+BerTLV.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/InputStreaming.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/InputStreaming.swift index d0673b8..17a8930 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/InputStreaming.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/InputStreaming.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/OutputStreaming.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/OutputStreaming.swift index 0484abc..9a723b1 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/OutputStreaming.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/OutputStreaming.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/TCPClient+Streaming.swift b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/TCPClient+Streaming.swift index 48cfdb2..7cb74c0 100644 --- a/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/TCPClient+Streaming.swift +++ b/CardSimulationTestKit/Sources/CardSimulationCardReaderProvider/internal/TCPClient+Streaming.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/KeepAliveRunLoop.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/KeepAliveRunLoop.swift index ef96c92..1cc5071 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/KeepAliveRunLoop.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/KeepAliveRunLoop.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/Logger.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/Logger.swift index 9681e9c..7f8a4a4 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/Logger.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/Logger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import OSLog diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationLoaderError.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationLoaderError.swift index c62bb0b..1f4d872 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationLoaderError.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationLoaderError.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationManager.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationManager.swift index a586c1e..da1cf4c 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationManager.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationManager.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationProcessMode.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationProcessMode.swift index 345c83d..08e01fa 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationProcessMode.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationProcessMode.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationRunner.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationRunner.swift index e53f8cd..c30fbf0 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationRunner.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationRunner.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationRunnerType+Ext.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationRunnerType+Ext.swift index d039bd8..6142052 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationRunnerType+Ext.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/SimulationRunnerType+Ext.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/internal/JavaProcess.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/internal/JavaProcess.swift index e34132f..b11b873 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/internal/JavaProcess.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/internal/JavaProcess.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/internal/SimulationManager+Internal.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/internal/SimulationManager+Internal.swift index 4c568b6..5619d65 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/internal/SimulationManager+Internal.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/internal/SimulationManager+Internal.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/internal/SimulationRunner+JavaProcessDelegate.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/internal/SimulationRunner+JavaProcessDelegate.swift index d1bc576..1ab13ab 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/internal/SimulationRunner+JavaProcessDelegate.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/internal/SimulationRunner+JavaProcessDelegate.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/internal/TempFilePathGeneratorType.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/internal/TempFilePathGeneratorType.swift index f777d54..26ae402 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/internal/TempFilePathGeneratorType.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/internal/TempFilePathGeneratorType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/static/Maven.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/static/Maven.swift index ad02306..6e80011 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/static/Maven.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/static/Maven.swift @@ -1,20 +1,23 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // - +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // + // This static shell script is supposed to be run by the SimulationManager when installing // the G2-Kartensimulation jar files. Unfortunately we cannot add this as a script file in a Bundle resource as the // SwiftPM won't include it in the target's framework diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/support/BlockingVar.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/support/BlockingVar.swift index 86ca5a7..3aea797 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/support/BlockingVar.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/support/BlockingVar.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2022 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/support/Data+IO.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/support/Data+IO.swift index ad4d18e..4c576f5 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/support/Data+IO.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/support/Data+IO.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/support/ResourceLoader.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/support/ResourceLoader.swift index 718a65f..435c869 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/support/ResourceLoader.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/support/ResourceLoader.swift @@ -1,18 +1,22 @@ // swiftlint:disable:this file_name // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/support/SynchronizedVar.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/support/SynchronizedVar.swift index 2317e4f..7e579b5 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/support/SynchronizedVar.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/support/SynchronizedVar.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/support/WeakArray.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/support/WeakArray.swift index 21b24e0..dc9c61a 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/support/WeakArray.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/support/WeakArray.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2022 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/xml/AEXMLDocument+XMLManipulation.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/xml/AEXMLDocument+XMLManipulation.swift index ed2c10b..561ef9f 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/xml/AEXMLDocument+XMLManipulation.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/xml/AEXMLDocument+XMLManipulation.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/xml/URL+ConfigurationFileProcessor.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/xml/URL+ConfigurationFileProcessor.swift index 900e8e5..456d71e 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/xml/URL+ConfigurationFileProcessor.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/xml/URL+ConfigurationFileProcessor.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/xml/XMLPath.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/xml/XMLPath.swift index ec1c4a0..d69fe52 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/xml/XMLPath.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/xml/XMLPath.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Sources/CardSimulationLoader/xml/XMLPathManipulator.swift b/CardSimulationTestKit/Sources/CardSimulationLoader/xml/XMLPathManipulator.swift index 97e437e..135d48f 100644 --- a/CardSimulationTestKit/Sources/CardSimulationLoader/xml/XMLPathManipulator.swift +++ b/CardSimulationTestKit/Sources/CardSimulationLoader/xml/XMLPathManipulator.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Sources/CardSimulationRunner/Logger.swift b/CardSimulationTestKit/Sources/CardSimulationRunner/Logger.swift index 4122ee3..9e91e4b 100644 --- a/CardSimulationTestKit/Sources/CardSimulationRunner/Logger.swift +++ b/CardSimulationTestKit/Sources/CardSimulationRunner/Logger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import OSLog diff --git a/CardSimulationTestKit/Sources/CardSimulationRunner/main.swift b/CardSimulationTestKit/Sources/CardSimulationRunner/main.swift index 4f89046..b19b355 100644 --- a/CardSimulationTestKit/Sources/CardSimulationRunner/main.swift +++ b/CardSimulationTestKit/Sources/CardSimulationRunner/main.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardSimulationLoader diff --git a/CardSimulationTestKit/Tests/AEXMLExtTests/AEXMLElementExtRootTest.swift b/CardSimulationTestKit/Tests/AEXMLExtTests/AEXMLElementExtRootTest.swift index de713e2..a811551 100644 --- a/CardSimulationTestKit/Tests/AEXMLExtTests/AEXMLElementExtRootTest.swift +++ b/CardSimulationTestKit/Tests/AEXMLExtTests/AEXMLElementExtRootTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Card/SimulatorCardChannelTest.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Card/SimulatorCardChannelTest.swift index b677667..29bd149 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Card/SimulatorCardChannelTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Card/SimulatorCardChannelTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Card/SimulatorCardTest.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Card/SimulatorCardTest.swift index 74b44ad..058d78a 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Card/SimulatorCardTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Card/SimulatorCardTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationCardReaderProvider diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/MockSimulationManager.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/MockSimulationManager.swift index 3b5acde..e0af245 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/MockSimulationManager.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/MockSimulationManager.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationCardReaderProvider diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/MockSimulationRunner.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/MockSimulationRunner.swift index 3439f7b..4bb2f3d 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/MockSimulationRunner.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/MockSimulationRunner.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardSimulationLoader diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Provider/SimulatorCardReaderProviderTest.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Provider/SimulatorCardReaderProviderTest.swift index 1596c4f..a18c6c9 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Provider/SimulatorCardReaderProviderTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Provider/SimulatorCardReaderProviderTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderAccess diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Reader/SimulatorCardReaderControllerTest.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Reader/SimulatorCardReaderControllerTest.swift index 1835610..a4552a5 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Reader/SimulatorCardReaderControllerTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Reader/SimulatorCardReaderControllerTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Reader/SimulatorCardReaderTest.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Reader/SimulatorCardReaderTest.swift index b2a8506..b52e15e 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Reader/SimulatorCardReaderTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/Reader/SimulatorCardReaderTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationCardReaderProvider diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/XCTestManifests.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/XCTestManifests.swift index f20f96e..edf6df1 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/XCTestManifests.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/XCTestManifests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import XCTest diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/internal/DataExtBerTLVTest.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/internal/DataExtBerTLVTest.swift index 7b277a3..b8e662a 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/internal/DataExtBerTLVTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/internal/DataExtBerTLVTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/internal/TCPClientExtStreamingTest.swift b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/internal/TCPClientExtStreamingTest.swift index 6553799..1fd1db1 100644 --- a/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/internal/TCPClientExtStreamingTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationCardReaderProviderTests/internal/TCPClientExtStreamingTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationCardReaderProvider diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/KeepAliveRunLoopTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/KeepAliveRunLoopTest.swift index 0dca56c..c0d7033 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/KeepAliveRunLoopTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/KeepAliveRunLoopTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationLoader diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/Logger.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/Logger.swift index 22c66bf..c5b1ad5 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/Logger.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/Logger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import OSLog diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationManagerTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationManagerTest.swift index 9026e97..69bcace 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationManagerTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationManagerTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationLoader diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationProcessModeTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationProcessModeTest.swift index a56c3d1..20978ce 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationProcessModeTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationProcessModeTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationLoader diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationRunnerTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationRunnerTest.swift index e93491d..070e5a3 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationRunnerTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/SimulationRunnerTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationLoader diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/XCTestManifests.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/XCTestManifests.swift index 744449d..ebd0333 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/XCTestManifests.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/XCTestManifests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import XCTest diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/internal/JavaProcessTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/internal/JavaProcessTest.swift index a752bf6..d5bcccd 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/internal/JavaProcessTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/internal/JavaProcessTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardSimulationLoader diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/internal/SimulationManagerExtInternalTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/internal/SimulationManagerExtInternalTest.swift index 19743e8..d91b3a5 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/internal/SimulationManagerExtInternalTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/internal/SimulationManagerExtInternalTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/AEXMLDocumentExtXMLManipulationTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/AEXMLDocumentExtXMLManipulationTest.swift index ddf8abc..2560a93 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/AEXMLDocumentExtXMLManipulationTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/AEXMLDocumentExtXMLManipulationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/URLExtConfigurationFileProcessorTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/URLExtConfigurationFileProcessorTest.swift index 28f44b3..0d871f3 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/URLExtConfigurationFileProcessorTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/URLExtConfigurationFileProcessorTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/XMLElementManipulatorTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/XMLElementManipulatorTest.swift index 6c9bb9d..251d900 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/XMLElementManipulatorTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/XMLElementManipulatorTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/XMLPathTest.swift b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/XMLPathTest.swift index ef26efe..2b68e4f 100644 --- a/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/XMLPathTest.swift +++ b/CardSimulationTestKit/Tests/CardSimulationLoaderTests/xml/XMLPathTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import AEXML diff --git a/IntegrationTests/AnyPublisher+Test.swift b/IntegrationTests/AnyPublisher+Test.swift index e2aa330..a2c9c67 100644 --- a/IntegrationTests/AnyPublisher+Test.swift +++ b/IntegrationTests/AnyPublisher+Test.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalResource.swift b/IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalResource.swift index 927c850..49a9f13 100644 --- a/IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalResource.swift +++ b/IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalResource.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderAccess diff --git a/IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalTestCase.swift b/IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalTestCase.swift index 3fe28d0..92b2596 100644 --- a/IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalTestCase.swift +++ b/IntegrationTests/CardSimulationTerminalTestCase/CardSimulationTerminalTestCase.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/IntegrationTests/HealthCardAccess/PublisherIntegrationTest.swift b/IntegrationTests/HealthCardAccess/PublisherIntegrationTest.swift index b457b77..3df2f9d 100644 --- a/IntegrationTests/HealthCardAccess/PublisherIntegrationTest.swift +++ b/IntegrationTests/HealthCardAccess/PublisherIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/IntegrationTests/HealthCardControl/AuthenticateChallengeE256Test.swift b/IntegrationTests/HealthCardControl/AuthenticateChallengeE256Test.swift index 1434eb5..53e0155 100644 --- a/IntegrationTests/HealthCardControl/AuthenticateChallengeE256Test.swift +++ b/IntegrationTests/HealthCardControl/AuthenticateChallengeE256Test.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/AuthenticateChallengeR2048Test.swift b/IntegrationTests/HealthCardControl/AuthenticateChallengeR2048Test.swift index 4e7f601..fac5d98 100644 --- a/IntegrationTests/HealthCardControl/AuthenticateChallengeR2048Test.swift +++ b/IntegrationTests/HealthCardControl/AuthenticateChallengeR2048Test.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/CardChannelTypeExtVersionIntegrationTest.swift b/IntegrationTests/HealthCardControl/CardChannelTypeExtVersionIntegrationTest.swift index 5f1dfcb..57338dc 100644 --- a/IntegrationTests/HealthCardControl/CardChannelTypeExtVersionIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/CardChannelTypeExtVersionIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/DetermineCardAidIntegrationTest.swift b/IntegrationTests/HealthCardControl/DetermineCardAidIntegrationTest.swift index f5d6e75..848aafc 100644 --- a/IntegrationTests/HealthCardControl/DetermineCardAidIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/DetermineCardAidIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/HealthCardTypeExtChangeReferenceDataIntegrationTest.swift b/IntegrationTests/HealthCardControl/HealthCardTypeExtChangeReferenceDataIntegrationTest.swift index 4f06888..7a4e9de 100644 --- a/IntegrationTests/HealthCardControl/HealthCardTypeExtChangeReferenceDataIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/HealthCardTypeExtChangeReferenceDataIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/HealthCardTypeExtChangeReferenceDataIntegrationTestCont.swift b/IntegrationTests/HealthCardControl/HealthCardTypeExtChangeReferenceDataIntegrationTestCont.swift index 78e72cc..50dec32 100644 --- a/IntegrationTests/HealthCardControl/HealthCardTypeExtChangeReferenceDataIntegrationTestCont.swift +++ b/IntegrationTests/HealthCardControl/HealthCardTypeExtChangeReferenceDataIntegrationTestCont.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/HealthCardTypeExtESIGNIntegrationTest.swift b/IntegrationTests/HealthCardControl/HealthCardTypeExtESIGNIntegrationTest.swift index f9ecc9b..60f7ceb 100644 --- a/IntegrationTests/HealthCardControl/HealthCardTypeExtESIGNIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/HealthCardTypeExtESIGNIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/HealthCardTypeExtEfCardAccessIntTest.swift b/IntegrationTests/HealthCardControl/HealthCardTypeExtEfCardAccessIntTest.swift index 33a42fe..4e91e5b 100644 --- a/IntegrationTests/HealthCardControl/HealthCardTypeExtEfCardAccessIntTest.swift +++ b/IntegrationTests/HealthCardControl/HealthCardTypeExtEfCardAccessIntTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTest.swift b/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTest.swift index 78d5422..9c5bf36 100644 --- a/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTestCont.swift b/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTestCont.swift index 377beb8..19f56a9 100644 --- a/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTestCont.swift +++ b/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTestCont.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTestContCont.swift b/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTestContCont.swift index 7ec0696..d45edae 100644 --- a/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTestContCont.swift +++ b/IntegrationTests/HealthCardControl/HealthCardTypeExtResetRetryCounterIntegrationTestContCont.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/HealthCardTypeExtVerifyPinTest.swift b/IntegrationTests/HealthCardControl/HealthCardTypeExtVerifyPinTest.swift index c27ee6e..7041bf6 100644 --- a/IntegrationTests/HealthCardControl/HealthCardTypeExtVerifyPinTest.swift +++ b/IntegrationTests/HealthCardControl/HealthCardTypeExtVerifyPinTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/KeyAgreementIntegrationTest.swift b/IntegrationTests/HealthCardControl/KeyAgreementIntegrationTest.swift index 40236dd..f8bbaf5 100644 --- a/IntegrationTests/HealthCardControl/KeyAgreementIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/KeyAgreementIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/IntegrationTests/HealthCardControl/OpenSecureSessionIntegrationTest.swift b/IntegrationTests/HealthCardControl/OpenSecureSessionIntegrationTest.swift index e71cd60..a133a62 100644 --- a/IntegrationTests/HealthCardControl/OpenSecureSessionIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/OpenSecureSessionIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/IntegrationTests/HealthCardControl/ReadAutCertificateE256Test.swift b/IntegrationTests/HealthCardControl/ReadAutCertificateE256Test.swift index b900593..71c7c34 100644 --- a/IntegrationTests/HealthCardControl/ReadAutCertificateE256Test.swift +++ b/IntegrationTests/HealthCardControl/ReadAutCertificateE256Test.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/ReadAutCertificateR2048Test.swift b/IntegrationTests/HealthCardControl/ReadAutCertificateR2048Test.swift index 2c7307b..164e42b 100644 --- a/IntegrationTests/HealthCardControl/ReadAutCertificateR2048Test.swift +++ b/IntegrationTests/HealthCardControl/ReadAutCertificateR2048Test.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/IntegrationTests/HealthCardControl/ReadFileIntegrationTest.swift b/IntegrationTests/HealthCardControl/ReadFileIntegrationTest.swift index bf81426..537b35e 100644 --- a/IntegrationTests/HealthCardControl/ReadFileIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/ReadFileIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/IntegrationTests/HealthCardControl/SelectCommandIntegrationTest.swift b/IntegrationTests/HealthCardControl/SelectCommandIntegrationTest.swift index 1aa5048..4353ce3 100644 --- a/IntegrationTests/HealthCardControl/SelectCommandIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/SelectCommandIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/IntegrationTests/HealthCardControl/SelectWithFCPOnSecureChannelIntegrationTest.swift b/IntegrationTests/HealthCardControl/SelectWithFCPOnSecureChannelIntegrationTest.swift index afcb14f..62a272a 100644 --- a/IntegrationTests/HealthCardControl/SelectWithFCPOnSecureChannelIntegrationTest.swift +++ b/IntegrationTests/HealthCardControl/SelectWithFCPOnSecureChannelIntegrationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/IntegrationTests/Logger.swift b/IntegrationTests/Logger.swift index 846ba22..ba5d309 100644 --- a/IntegrationTests/Logger.swift +++ b/IntegrationTests/Logger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import OSLog diff --git a/IntegrationTests/ResourceLoader.swift b/IntegrationTests/ResourceLoader.swift index 30e0cec..f3f2510 100644 --- a/IntegrationTests/ResourceLoader.swift +++ b/IntegrationTests/ResourceLoader.swift @@ -1,18 +1,22 @@ // swiftlint:disable:this file_name // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Package.swift b/Package.swift index fe1f692..d23eb1a 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,23 @@ // swift-tools-version: 5.8 +// +// Copyright (Change Date see Readme), gematik GmbH +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. +// import PackageDescription diff --git a/README.adoc b/README.adoc index 318bf41..3b7616e 100644 --- a/README.adoc +++ b/README.adoc @@ -1,9 +1,7 @@ //// Execute `make readme` after editing /README.adoc //// -:toc-title: Table of Contents -:toc: -:toclevels: 2 +:doctype: book :source-highlighter: prettify :testdir: ../../Tests @@ -12,15 +10,80 @@ Execute `make readme` after editing /README.adoc = OpenHealthCardKit +++++ +
+ Table of Contents +
    +
  1. + About The Project + +
  2. +
  3. + Getting Started + +
  4. +
  5. Usage
  6. +
  7. License
  8. +
  9. Contact
  10. +
+
+++++ + +== About The Project + Controlling/Use-case framework for accessing smart cards of the telematic infrastructure. include::doc/userguide/OHCKIT_Introduction.adoc[] -include::doc/userguide/OHCKIT_API.adoc[] +include::doc/userguide/OHCKIT_Overview.adoc[] -include::doc/userguide/OHCKIT_GettingStarted.adoc[] +=== Release Notes +See `link:../ReleaseNotes.md[ReleaseNotes]` for all information regarding the (newest) releases. -include::doc/userguide/OHCKIT_Overview.adoc[] +== Getting Started + +OpenHealthCardKit requires Swift 5.6. + +=== Prerequisites + +- Swift 5.6 or later +- Xcode (for iOS development) +- Swift Package Manager, Carthage, or manual integration + +=== Installation + +==== Swift Package Manager + +Put this in your `Package.swift`: + +[source,swift] +---- +.package(url: "https://github.com/gematik/ref-OpenHealthCardKit", from: "5.6.0"), +---- + +==== Carthage + +Put this in your `Cartfile`: + +---- +github "gematik/ref-openHealthCardKit" ~> 5.0 +---- + +==== Setup for Development + +Run `$ make setup` to start developing locally. This will make sure all the dependencies are put in place and the Xcode-project will be generated and/or overwritten. + +Dependencies are a mix of SPM (Swift Package Manager) and Carthage right now. The Xcode-project is generated using `xcodegen`. +The more complex build configuration(s) is done with the help of Fastlane. See the `./fastlane` directory for full setup. + +== Usage + +include::doc/userguide/OHCKIT_API.adoc[] include::doc/userguide/OHCKIT_CardReaderProviderApi.adoc[] @@ -29,6 +92,30 @@ include::doc/userguide/OHCKIT_HealthCardAccess.adoc[] include::doc/userguide/OHCKIT_HealthCardControl.adoc[] include::doc/userguide/OHCKIT_NFCCardReaderProvider.adoc[] + include::doc/userguide/OHCKIT_NFCDemo.adoc[] -include::doc/userguide/OHCKIT_License.adoc[] +For more examples or in-depth documentation, please refer to the included user guide sections above. + +== License + +Copyright 2020-2025 gematik GmbH + +Apache License, Version 2.0 + +See the `link:../LICENSE[LICENSE]` for the specific language governing permissions and limitations under the License + +== Additional Notes and Disclaimer from gematik GmbH + +. Copyright notice: Each published work result is accompanied by an explicit statement of the license conditions for use. These are regularly typical conditions in connection with open source or free software. Programs described/provided/linked here are free software, unless otherwise stated. +. Permission notice: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +.. The copyright notice (Item 1) and the permission notice (Item 2) shall be included in all copies or substantial portions of the Software. +.. The software is provided "as is" without warranty of any kind, either express or implied, including, but not limited to, the warranties of fitness for a particular purpose, merchantability, and/or non-infringement. The authors or copyright holders shall not be liable in any manner whatsoever for any damages or other claims arising from, out of or in connection with the software or the use or other dealings with the software, whether in an action of contract, tort, or otherwise. +.. The software is the result of research and development activities, therefore not necessarily quality assured and without the character of a liable product. For this reason, gematik does not provide any support or other user assistance (unless otherwise stated in individual cases and without justification of a legal obligation). Furthermore, there is no claim to further development and adaptation of the results to a more current state of the art. +. Gematik may remove published results temporarily or permanently from the place of publication at any time without prior notice or justification. +. Please note: Parts of this code may have been generated using AI-supported technology. Please take this into account, especially when troubleshooting, for security analyses and possible adjustments. + +== Contact + +This software is currently being tested to ensure its technical quality and legal compliance. Your feedback is highly valued. +If you find any issues or have any suggestions or comments, or if you see any other ways in which we can improve, please reach out to: ospo@gematik.de diff --git a/Sources/CardReaderAccess/CardReaderControllerManager.swift b/Sources/CardReaderAccess/CardReaderControllerManager.swift index a35af7c..0f64c63 100644 --- a/Sources/CardReaderAccess/CardReaderControllerManager.swift +++ b/Sources/CardReaderAccess/CardReaderControllerManager.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/CardReaderAccess/internal/Swift+Reflection.swift b/Sources/CardReaderAccess/internal/Swift+Reflection.swift index ab4e098..ee970b0 100644 --- a/Sources/CardReaderAccess/internal/Swift+Reflection.swift +++ b/Sources/CardReaderAccess/internal/Swift+Reflection.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Card/CardChannelType.swift b/Sources/CardReaderProviderApi/Card/CardChannelType.swift index 731ed64..96ec967 100644 --- a/Sources/CardReaderProviderApi/Card/CardChannelType.swift +++ b/Sources/CardReaderProviderApi/Card/CardChannelType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Card/CardError.swift b/Sources/CardReaderProviderApi/Card/CardError.swift index 8ce3b4f..c8d1e52 100644 --- a/Sources/CardReaderProviderApi/Card/CardError.swift +++ b/Sources/CardReaderProviderApi/Card/CardError.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Card/CardProtocol.swift b/Sources/CardReaderProviderApi/Card/CardProtocol.swift index 18eec99..f0f8c2d 100644 --- a/Sources/CardReaderProviderApi/Card/CardProtocol.swift +++ b/Sources/CardReaderProviderApi/Card/CardProtocol.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Card/CardType.swift b/Sources/CardReaderProviderApi/Card/CardType.swift index 60c77e8..498d93f 100644 --- a/Sources/CardReaderProviderApi/Card/CardType.swift +++ b/Sources/CardReaderProviderApi/Card/CardType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Command/APDU.swift b/Sources/CardReaderProviderApi/Command/APDU.swift index 6cf6876..56d02e3 100644 --- a/Sources/CardReaderProviderApi/Command/APDU.swift +++ b/Sources/CardReaderProviderApi/Command/APDU.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Command/CommandType+APDU.swift b/Sources/CardReaderProviderApi/Command/CommandType+APDU.swift index 1e8ddb4..dd86d17 100644 --- a/Sources/CardReaderProviderApi/Command/CommandType+APDU.swift +++ b/Sources/CardReaderProviderApi/Command/CommandType+APDU.swift @@ -1,18 +1,22 @@ // swiftlint:disable:this file_name // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Command/CommandType+LogicChannel.swift b/Sources/CardReaderProviderApi/Command/CommandType+LogicChannel.swift index f872956..8d8a2ed 100644 --- a/Sources/CardReaderProviderApi/Command/CommandType+LogicChannel.swift +++ b/Sources/CardReaderProviderApi/Command/CommandType+LogicChannel.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Command/CommandType.swift b/Sources/CardReaderProviderApi/Command/CommandType.swift index a6e732f..c930fb5 100644 --- a/Sources/CardReaderProviderApi/Command/CommandType.swift +++ b/Sources/CardReaderProviderApi/Command/CommandType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Command/ResponseType+APDU.swift b/Sources/CardReaderProviderApi/Command/ResponseType+APDU.swift index e0ff60b..441af92 100644 --- a/Sources/CardReaderProviderApi/Command/ResponseType+APDU.swift +++ b/Sources/CardReaderProviderApi/Command/ResponseType+APDU.swift @@ -1,18 +1,22 @@ // swiftlint:disable:this file_name // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Command/ResponseType.swift b/Sources/CardReaderProviderApi/Command/ResponseType.swift index 7958092..b69da6d 100644 --- a/Sources/CardReaderProviderApi/Command/ResponseType.swift +++ b/Sources/CardReaderProviderApi/Command/ResponseType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Model/ProviderDescriptor.swift b/Sources/CardReaderProviderApi/Model/ProviderDescriptor.swift index cfaa7a2..559a258 100644 --- a/Sources/CardReaderProviderApi/Model/ProviderDescriptor.swift +++ b/Sources/CardReaderProviderApi/Model/ProviderDescriptor.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Model/ProviderDescriptorType.swift b/Sources/CardReaderProviderApi/Model/ProviderDescriptorType.swift index 74b8ecc..b72b388 100644 --- a/Sources/CardReaderProviderApi/Model/ProviderDescriptorType.swift +++ b/Sources/CardReaderProviderApi/Model/ProviderDescriptorType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Provider/CardReaderProviderType.swift b/Sources/CardReaderProviderApi/Provider/CardReaderProviderType.swift index 7c9d374..56de780 100644 --- a/Sources/CardReaderProviderApi/Provider/CardReaderProviderType.swift +++ b/Sources/CardReaderProviderApi/Provider/CardReaderProviderType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Reader/CardReaderControllerType.swift b/Sources/CardReaderProviderApi/Reader/CardReaderControllerType.swift index 8a5ac34..da0d370 100644 --- a/Sources/CardReaderProviderApi/Reader/CardReaderControllerType.swift +++ b/Sources/CardReaderProviderApi/Reader/CardReaderControllerType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/CardReaderProviderApi/Reader/CardReaderType.swift b/Sources/CardReaderProviderApi/Reader/CardReaderType.swift index 5817606..9e49768 100644 --- a/Sources/CardReaderProviderApi/Reader/CardReaderType.swift +++ b/Sources/CardReaderProviderApi/Reader/CardReaderType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/ApplicationIdentifier.swift b/Sources/HealthCardAccess/CardObjects/ApplicationIdentifier.swift index df9fa74..049ff1b 100644 --- a/Sources/HealthCardAccess/CardObjects/ApplicationIdentifier.swift +++ b/Sources/HealthCardAccess/CardObjects/ApplicationIdentifier.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/CardItemType.swift b/Sources/HealthCardAccess/CardObjects/CardItemType.swift index 39d4caa..1109c42 100644 --- a/Sources/HealthCardAccess/CardObjects/CardItemType.swift +++ b/Sources/HealthCardAccess/CardObjects/CardItemType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/CardKeyReferenceType.swift b/Sources/HealthCardAccess/CardObjects/CardKeyReferenceType.swift index f49c29c..d3e530a 100644 --- a/Sources/HealthCardAccess/CardObjects/CardKeyReferenceType.swift +++ b/Sources/HealthCardAccess/CardObjects/CardKeyReferenceType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/CardObjectIdentifierType.swift b/Sources/HealthCardAccess/CardObjects/CardObjectIdentifierType.swift index dec551d..5cb8a40 100644 --- a/Sources/HealthCardAccess/CardObjects/CardObjectIdentifierType.swift +++ b/Sources/HealthCardAccess/CardObjects/CardObjectIdentifierType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/DedicatedFile.swift b/Sources/HealthCardAccess/CardObjects/DedicatedFile.swift index 6e6b9ec..ccd00ff 100644 --- a/Sources/HealthCardAccess/CardObjects/DedicatedFile.swift +++ b/Sources/HealthCardAccess/CardObjects/DedicatedFile.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/ElementaryFile.swift b/Sources/HealthCardAccess/CardObjects/ElementaryFile.swift index 34faeb9..547a9bc 100644 --- a/Sources/HealthCardAccess/CardObjects/ElementaryFile.swift +++ b/Sources/HealthCardAccess/CardObjects/ElementaryFile.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/FileControlParameter.swift b/Sources/HealthCardAccess/CardObjects/FileControlParameter.swift index b2faff7..a3c7edc 100644 --- a/Sources/HealthCardAccess/CardObjects/FileControlParameter.swift +++ b/Sources/HealthCardAccess/CardObjects/FileControlParameter.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/CardObjects/FileIdentifier.swift b/Sources/HealthCardAccess/CardObjects/FileIdentifier.swift index a5da1d2..d36d471 100644 --- a/Sources/HealthCardAccess/CardObjects/FileIdentifier.swift +++ b/Sources/HealthCardAccess/CardObjects/FileIdentifier.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/Format2Pin.swift b/Sources/HealthCardAccess/CardObjects/Format2Pin.swift index 92503ae..bd65908 100644 --- a/Sources/HealthCardAccess/CardObjects/Format2Pin.swift +++ b/Sources/HealthCardAccess/CardObjects/Format2Pin.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/GemCvCertificate.swift b/Sources/HealthCardAccess/CardObjects/GemCvCertificate.swift index 6b545e0..58b6332 100644 --- a/Sources/HealthCardAccess/CardObjects/GemCvCertificate.swift +++ b/Sources/HealthCardAccess/CardObjects/GemCvCertificate.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/CardObjects/Key.swift b/Sources/HealthCardAccess/CardObjects/Key.swift index 6232124..e8cf9bf 100644 --- a/Sources/HealthCardAccess/CardObjects/Key.swift +++ b/Sources/HealthCardAccess/CardObjects/Key.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/PSOAlgorithm.swift b/Sources/HealthCardAccess/CardObjects/PSOAlgorithm.swift index 3dac446..5acb687 100644 --- a/Sources/HealthCardAccess/CardObjects/PSOAlgorithm.swift +++ b/Sources/HealthCardAccess/CardObjects/PSOAlgorithm.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/Password.swift b/Sources/HealthCardAccess/CardObjects/Password.swift index 8fea300..d9329b3 100644 --- a/Sources/HealthCardAccess/CardObjects/Password.swift +++ b/Sources/HealthCardAccess/CardObjects/Password.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/CardObjects/ShortFileIdentifier.swift b/Sources/HealthCardAccess/CardObjects/ShortFileIdentifier.swift index 50f3b4b..6dd51f2 100644 --- a/Sources/HealthCardAccess/CardObjects/ShortFileIdentifier.swift +++ b/Sources/HealthCardAccess/CardObjects/ShortFileIdentifier.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Commands/Data+Normalize.swift b/Sources/HealthCardAccess/Commands/Data+Normalize.swift index 59533fe..9a80a58 100644 --- a/Sources/HealthCardAccess/Commands/Data+Normalize.swift +++ b/Sources/HealthCardAccess/Commands/Data+Normalize.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand+AccessStructuredData.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand+AccessStructuredData.swift index ee95973..4113f47 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand+AccessStructuredData.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand+AccessStructuredData.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand+AccessTransparentData.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand+AccessTransparentData.swift index 49b44c4..74c0487 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand+AccessTransparentData.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand+AccessTransparentData.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand+Authentication.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand+Authentication.swift index 76ed845..629d809 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand+Authentication.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand+Authentication.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand+ManageSE.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand+ManageSE.swift index 81fe490..ab42a3a 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand+ManageSE.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand+ManageSE.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand+Misc.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand+Misc.swift index 530d193..a6e7173 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand+Misc.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand+Misc.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand+ObjectSystemManagement.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand+ObjectSystemManagement.swift index 8f9e47e..2e0f50d 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand+ObjectSystemManagement.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand+ObjectSystemManagement.swift @@ -1,18 +1,22 @@ // swiftlint:disable file_length // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand+PerfomSecurityOperation.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand+PerfomSecurityOperation.swift index 1745de4..65448d4 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand+PerfomSecurityOperation.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand+PerfomSecurityOperation.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand+UserVerification.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand+UserVerification.swift index 35b9f2e..0005ddf 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand+UserVerification.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand+UserVerification.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommand.swift b/Sources/HealthCardAccess/Commands/HealthCardCommand.swift index aff27f4..6253c38 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommand.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommand.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardAccess/Commands/HealthCardCommandBuilder.swift b/Sources/HealthCardAccess/Commands/HealthCardCommandBuilder.swift index b00d9a7..a19d2bd 100644 --- a/Sources/HealthCardAccess/Commands/HealthCardCommandBuilder.swift +++ b/Sources/HealthCardAccess/Commands/HealthCardCommandBuilder.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/Data+Hex.swift b/Sources/HealthCardAccess/Data+Hex.swift index 5748710..5899760 100644 --- a/Sources/HealthCardAccess/Data+Hex.swift +++ b/Sources/HealthCardAccess/Data+Hex.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Extension/UInt8+Data.swift b/Sources/HealthCardAccess/Extension/UInt8+Data.swift index 9f0473a..c751a8c 100644 --- a/Sources/HealthCardAccess/Extension/UInt8+Data.swift +++ b/Sources/HealthCardAccess/Extension/UInt8+Data.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/HealthCard.swift b/Sources/HealthCardAccess/HealthCard.swift index e9836e4..c298230 100644 --- a/Sources/HealthCardAccess/HealthCard.swift +++ b/Sources/HealthCardAccess/HealthCard.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardAccess/HealthCardCommandType.swift b/Sources/HealthCardAccess/HealthCardCommandType.swift index cd17794..ddb7355 100644 --- a/Sources/HealthCardAccess/HealthCardCommandType.swift +++ b/Sources/HealthCardAccess/HealthCardCommandType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardAccess/HealthCardPropertyType.swift b/Sources/HealthCardAccess/HealthCardPropertyType.swift index ab1e5af..46ba884 100644 --- a/Sources/HealthCardAccess/HealthCardPropertyType.swift +++ b/Sources/HealthCardAccess/HealthCardPropertyType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/HealthCardResponseType.swift b/Sources/HealthCardAccess/HealthCardResponseType.swift index deea37c..b576dac 100644 --- a/Sources/HealthCardAccess/HealthCardResponseType.swift +++ b/Sources/HealthCardAccess/HealthCardResponseType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardAccess/HealthCardStatus.swift b/Sources/HealthCardAccess/HealthCardStatus.swift index e3eeed3..4036d23 100644 --- a/Sources/HealthCardAccess/HealthCardStatus.swift +++ b/Sources/HealthCardAccess/HealthCardStatus.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/HealthCardType.swift b/Sources/HealthCardAccess/HealthCardType.swift index 3ed97e7..abe1205 100644 --- a/Sources/HealthCardAccess/HealthCardType.swift +++ b/Sources/HealthCardAccess/HealthCardType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardAccess/HealthCards/CardFileSystem/EgkFileSystem.swift b/Sources/HealthCardAccess/HealthCards/CardFileSystem/EgkFileSystem.swift index e124a8c..b091600 100644 --- a/Sources/HealthCardAccess/HealthCards/CardFileSystem/EgkFileSystem.swift +++ b/Sources/HealthCardAccess/HealthCards/CardFileSystem/EgkFileSystem.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/HealthCards/CardFileSystem/HbaFileSystem.swift b/Sources/HealthCardAccess/HealthCards/CardFileSystem/HbaFileSystem.swift index 7a43db9..7a8c13a 100644 --- a/Sources/HealthCardAccess/HealthCards/CardFileSystem/HbaFileSystem.swift +++ b/Sources/HealthCardAccess/HealthCards/CardFileSystem/HbaFileSystem.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/HealthCards/CardFileSystem/HealthCardFileSystemType.swift b/Sources/HealthCardAccess/HealthCards/CardFileSystem/HealthCardFileSystemType.swift index 5a7758c..2b2af01 100644 --- a/Sources/HealthCardAccess/HealthCards/CardFileSystem/HealthCardFileSystemType.swift +++ b/Sources/HealthCardAccess/HealthCards/CardFileSystem/HealthCardFileSystemType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/HealthCards/CardFileSystem/SmcbFileSystem.swift b/Sources/HealthCardAccess/HealthCards/CardFileSystem/SmcbFileSystem.swift index 47781ee..4bc72da 100644 --- a/Sources/HealthCardAccess/HealthCards/CardFileSystem/SmcbFileSystem.swift +++ b/Sources/HealthCardAccess/HealthCards/CardFileSystem/SmcbFileSystem.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Models/CAN.swift b/Sources/HealthCardAccess/Models/CAN.swift index e1a03e0..0d7f1c7 100644 --- a/Sources/HealthCardAccess/Models/CAN.swift +++ b/Sources/HealthCardAccess/Models/CAN.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Models/CardGeneration.swift b/Sources/HealthCardAccess/Models/CardGeneration.swift index 233dccb..d18f8be 100644 --- a/Sources/HealthCardAccess/Models/CardGeneration.swift +++ b/Sources/HealthCardAccess/Models/CardGeneration.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Models/CardVersion2.swift b/Sources/HealthCardAccess/Models/CardVersion2.swift index a2acf7b..1c61d86 100644 --- a/Sources/HealthCardAccess/Models/CardVersion2.swift +++ b/Sources/HealthCardAccess/Models/CardVersion2.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/Models/CertificateInfo.swift b/Sources/HealthCardAccess/Models/CertificateInfo.swift index 545242f..7b775e4 100644 --- a/Sources/HealthCardAccess/Models/CertificateInfo.swift +++ b/Sources/HealthCardAccess/Models/CertificateInfo.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Models/ECCurveInfo.swift b/Sources/HealthCardAccess/Models/ECCurveInfo.swift index f845329..faee8a4 100644 --- a/Sources/HealthCardAccess/Models/ECCurveInfo.swift +++ b/Sources/HealthCardAccess/Models/ECCurveInfo.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardAccess/Models/SignatureAlgorithm.swift b/Sources/HealthCardAccess/Models/SignatureAlgorithm.swift index e35b5e4..a539366 100644 --- a/Sources/HealthCardAccess/Models/SignatureAlgorithm.swift +++ b/Sources/HealthCardAccess/Models/SignatureAlgorithm.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardAccess/Responses/HealthCardResponse.swift b/Sources/HealthCardAccess/Responses/HealthCardResponse.swift index ad6aab2..0ac20b2 100644 --- a/Sources/HealthCardAccess/Responses/HealthCardResponse.swift +++ b/Sources/HealthCardAccess/Responses/HealthCardResponse.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardAccess/Responses/ResponseStatus.swift b/Sources/HealthCardAccess/Responses/ResponseStatus.swift index 5bf97a2..666d4c0 100644 --- a/Sources/HealthCardAccess/Responses/ResponseStatus.swift +++ b/Sources/HealthCardAccess/Responses/ResponseStatus.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardControl/Authentication/HealthCardType+Authenticate.swift b/Sources/HealthCardControl/Authentication/HealthCardType+Authenticate.swift index 39bf90a..8fbf72b 100644 --- a/Sources/HealthCardControl/Authentication/HealthCardType+Authenticate.swift +++ b/Sources/HealthCardControl/Authentication/HealthCardType+Authenticate.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/HealthCardControl/Authentication/HealthCardType+ChangeReferenceData.swift b/Sources/HealthCardControl/Authentication/HealthCardType+ChangeReferenceData.swift index 5c18ced..652b8f8 100644 --- a/Sources/HealthCardControl/Authentication/HealthCardType+ChangeReferenceData.swift +++ b/Sources/HealthCardControl/Authentication/HealthCardType+ChangeReferenceData.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/HealthCardControl/Authentication/HealthCardType+ESIGN.swift b/Sources/HealthCardControl/Authentication/HealthCardType+ESIGN.swift index 7e12be7..1d10994 100644 --- a/Sources/HealthCardControl/Authentication/HealthCardType+ESIGN.swift +++ b/Sources/HealthCardControl/Authentication/HealthCardType+ESIGN.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/HealthCardControl/Authentication/HealthCardType+ResetRetryCounter.swift b/Sources/HealthCardControl/Authentication/HealthCardType+ResetRetryCounter.swift index 91f8d1e..c77c55d 100644 --- a/Sources/HealthCardControl/Authentication/HealthCardType+ResetRetryCounter.swift +++ b/Sources/HealthCardControl/Authentication/HealthCardType+ResetRetryCounter.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/HealthCardControl/Authentication/HealthCardType+VerifyPin.swift b/Sources/HealthCardControl/Authentication/HealthCardType+VerifyPin.swift index a464434..cc04708 100644 --- a/Sources/HealthCardControl/Authentication/HealthCardType+VerifyPin.swift +++ b/Sources/HealthCardControl/Authentication/HealthCardType+VerifyPin.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/HealthCardControl/Authentication/ResponseStatus+WrongSecret.swift b/Sources/HealthCardControl/Authentication/ResponseStatus+WrongSecret.swift index 54abcc3..f6921f0 100644 --- a/Sources/HealthCardControl/Authentication/ResponseStatus+WrongSecret.swift +++ b/Sources/HealthCardControl/Authentication/ResponseStatus+WrongSecret.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import HealthCardAccess diff --git a/Sources/HealthCardControl/Crypto/AES.swift b/Sources/HealthCardControl/Crypto/AES.swift index 27b7609..4fa5eef 100644 --- a/Sources/HealthCardControl/Crypto/AES.swift +++ b/Sources/HealthCardControl/Crypto/AES.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CommonCrypto diff --git a/Sources/HealthCardControl/Crypto/Data+Secure.swift b/Sources/HealthCardControl/Crypto/Data+Secure.swift index fbc1472..5a2b395 100644 --- a/Sources/HealthCardControl/Crypto/Data+Secure.swift +++ b/Sources/HealthCardControl/Crypto/Data+Secure.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CommonCrypto diff --git a/Sources/HealthCardControl/Crypto/KeyDerivationFunction.swift b/Sources/HealthCardControl/Crypto/KeyDerivationFunction.swift index a46d773..cde3d35 100644 --- a/Sources/HealthCardControl/Crypto/KeyDerivationFunction.swift +++ b/Sources/HealthCardControl/Crypto/KeyDerivationFunction.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardControl/Logger.swift b/Sources/HealthCardControl/Logger.swift index 1bd7c8b..4be30a1 100644 --- a/Sources/HealthCardControl/Logger.swift +++ b/Sources/HealthCardControl/Logger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import OSLog diff --git a/Sources/HealthCardControl/Operations/CardChannelType+CardAID.swift b/Sources/HealthCardControl/Operations/CardChannelType+CardAID.swift index 9a0bc29..5dd33af 100644 --- a/Sources/HealthCardControl/Operations/CardChannelType+CardAID.swift +++ b/Sources/HealthCardControl/Operations/CardChannelType+CardAID.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardControl/Operations/CardChannelType+CardAccess.swift b/Sources/HealthCardControl/Operations/CardChannelType+CardAccess.swift index c0998b2..d5a278a 100644 --- a/Sources/HealthCardControl/Operations/CardChannelType+CardAccess.swift +++ b/Sources/HealthCardControl/Operations/CardChannelType+CardAccess.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardControl/Operations/CardChannelType+Version.swift b/Sources/HealthCardControl/Operations/CardChannelType+Version.swift index 7883601..edcb46c 100644 --- a/Sources/HealthCardControl/Operations/CardChannelType+Version.swift +++ b/Sources/HealthCardControl/Operations/CardChannelType+Version.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardControl/Operations/HealthCard+Error.swift b/Sources/HealthCardControl/Operations/HealthCard+Error.swift index ab0cfe1..cd5295b 100644 --- a/Sources/HealthCardControl/Operations/HealthCard+Error.swift +++ b/Sources/HealthCardControl/Operations/HealthCard+Error.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardControl/Operations/HealthCardType+ReadFile.swift b/Sources/HealthCardControl/Operations/HealthCardType+ReadFile.swift index 955b0f2..a5d9585 100644 --- a/Sources/HealthCardControl/Operations/HealthCardType+ReadFile.swift +++ b/Sources/HealthCardControl/Operations/HealthCardType+ReadFile.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardControl/SecureMessaging/AES128PaceKey.swift b/Sources/HealthCardControl/SecureMessaging/AES128PaceKey.swift index d741258..7f39387 100644 --- a/Sources/HealthCardControl/SecureMessaging/AES128PaceKey.swift +++ b/Sources/HealthCardControl/SecureMessaging/AES128PaceKey.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardControl/SecureMessaging/CardType+SecureMessaging.swift b/Sources/HealthCardControl/SecureMessaging/CardType+SecureMessaging.swift index f077f31..42254f0 100644 --- a/Sources/HealthCardControl/SecureMessaging/CardType+SecureMessaging.swift +++ b/Sources/HealthCardControl/SecureMessaging/CardType+SecureMessaging.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardControl/SecureMessaging/Data+Hex.swift b/Sources/HealthCardControl/SecureMessaging/Data+Hex.swift index 5748710..5899760 100644 --- a/Sources/HealthCardControl/SecureMessaging/Data+Hex.swift +++ b/Sources/HealthCardControl/SecureMessaging/Data+Hex.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/HealthCardControl/SecureMessaging/KeyAgreement.swift b/Sources/HealthCardControl/SecureMessaging/KeyAgreement.swift index 295989e..bdcbbd7 100644 --- a/Sources/HealthCardControl/SecureMessaging/KeyAgreement.swift +++ b/Sources/HealthCardControl/SecureMessaging/KeyAgreement.swift @@ -1,18 +1,22 @@ // swiftlint:disable file_length // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Sources/HealthCardControl/SecureMessaging/SecureCardChannel.swift b/Sources/HealthCardControl/SecureMessaging/SecureCardChannel.swift index 5be6683..cfe678f 100644 --- a/Sources/HealthCardControl/SecureMessaging/SecureCardChannel.swift +++ b/Sources/HealthCardControl/SecureMessaging/SecureCardChannel.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardControl/SecureMessaging/SecureHealthCard.swift b/Sources/HealthCardControl/SecureMessaging/SecureHealthCard.swift index 8be4f15..1df78ed 100644 --- a/Sources/HealthCardControl/SecureMessaging/SecureHealthCard.swift +++ b/Sources/HealthCardControl/SecureMessaging/SecureHealthCard.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/HealthCardControl/SecureMessaging/SecureMessaging.swift b/Sources/HealthCardControl/SecureMessaging/SecureMessaging.swift index ce9a92d..11a51d4 100644 --- a/Sources/HealthCardControl/SecureMessaging/SecureMessaging.swift +++ b/Sources/HealthCardControl/SecureMessaging/SecureMessaging.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/Helper/CommandLogger.swift b/Sources/Helper/CommandLogger.swift index 1d19cae..7e74a09 100644 --- a/Sources/Helper/CommandLogger.swift +++ b/Sources/Helper/CommandLogger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/NFCCardReaderProvider/Card/Data+Hex.swift b/Sources/NFCCardReaderProvider/Card/Data+Hex.swift index 5748710..5899760 100644 --- a/Sources/NFCCardReaderProvider/Card/Data+Hex.swift +++ b/Sources/NFCCardReaderProvider/Card/Data+Hex.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/NFCCardReaderProvider/Card/NFCCard.swift b/Sources/NFCCardReaderProvider/Card/NFCCard.swift index 669169b..037308a 100644 --- a/Sources/NFCCardReaderProvider/Card/NFCCard.swift +++ b/Sources/NFCCardReaderProvider/Card/NFCCard.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // #if os(iOS) diff --git a/Sources/NFCCardReaderProvider/Card/NFCCardChannel.swift b/Sources/NFCCardReaderProvider/Card/NFCCardChannel.swift index 8f9bc57..b84f7ce 100644 --- a/Sources/NFCCardReaderProvider/Card/NFCCardChannel.swift +++ b/Sources/NFCCardReaderProvider/Card/NFCCardChannel.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // #if os(iOS) diff --git a/Sources/NFCCardReaderProvider/Card/NFCCardError.swift b/Sources/NFCCardReaderProvider/Card/NFCCardError.swift index acd83a8..6038d26 100644 --- a/Sources/NFCCardReaderProvider/Card/NFCCardError.swift +++ b/Sources/NFCCardReaderProvider/Card/NFCCardError.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/NFCCardReaderProvider/Card/NFCISO7816APDU+CommandType.swift b/Sources/NFCCardReaderProvider/Card/NFCISO7816APDU+CommandType.swift index 2619975..d2b6534 100644 --- a/Sources/NFCCardReaderProvider/Card/NFCISO7816APDU+CommandType.swift +++ b/Sources/NFCCardReaderProvider/Card/NFCISO7816APDU+CommandType.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // #if os(iOS) diff --git a/Sources/NFCCardReaderProvider/Logger.swift b/Sources/NFCCardReaderProvider/Logger.swift index 13e7792..3579bf4 100644 --- a/Sources/NFCCardReaderProvider/Logger.swift +++ b/Sources/NFCCardReaderProvider/Logger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import OSLog diff --git a/Sources/NFCCardReaderProvider/NFCHealthCardSession.swift b/Sources/NFCCardReaderProvider/NFCHealthCardSession.swift index 2166fe6..8ef98f2 100644 --- a/Sources/NFCCardReaderProvider/NFCHealthCardSession.swift +++ b/Sources/NFCCardReaderProvider/NFCHealthCardSession.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // #if os(iOS) diff --git a/Sources/NFCCardReaderProvider/Reader/CoreNFCError.swift b/Sources/NFCCardReaderProvider/Reader/CoreNFCError.swift index 5a27bb5..258018e 100644 --- a/Sources/NFCCardReaderProvider/Reader/CoreNFCError.swift +++ b/Sources/NFCCardReaderProvider/Reader/CoreNFCError.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // #if os(iOS) diff --git a/Sources/NFCCardReaderProvider/Reader/NFCTagReaderSession+Publisher.swift b/Sources/NFCCardReaderProvider/Reader/NFCTagReaderSession+Publisher.swift index 3a577cc..d7607b6 100644 --- a/Sources/NFCCardReaderProvider/Reader/NFCTagReaderSession+Publisher.swift +++ b/Sources/NFCCardReaderProvider/Reader/NFCTagReaderSession+Publisher.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // #if os(iOS) diff --git a/Sources/NFCDemo/AppDelegate.swift b/Sources/NFCDemo/AppDelegate.swift index d138a78..07beb83 100644 --- a/Sources/NFCDemo/AppDelegate.swift +++ b/Sources/NFCDemo/AppDelegate.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import UIKit diff --git a/Sources/NFCDemo/Data+Hex.swift b/Sources/NFCDemo/Data+Hex.swift index 5748710..5899760 100644 --- a/Sources/NFCDemo/Data+Hex.swift +++ b/Sources/NFCDemo/Data+Hex.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/NFCDemo/EnvironmentValues+ChangeReferenceDataController.swift b/Sources/NFCDemo/EnvironmentValues+ChangeReferenceDataController.swift index 929738f..3432f37 100644 --- a/Sources/NFCDemo/EnvironmentValues+ChangeReferenceDataController.swift +++ b/Sources/NFCDemo/EnvironmentValues+ChangeReferenceDataController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SwiftUI diff --git a/Sources/NFCDemo/EnvironmentValues+ReadPersonalDataController.swift b/Sources/NFCDemo/EnvironmentValues+ReadPersonalDataController.swift index f907528..65a958b 100644 --- a/Sources/NFCDemo/EnvironmentValues+ReadPersonalDataController.swift +++ b/Sources/NFCDemo/EnvironmentValues+ReadPersonalDataController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SwiftUI diff --git a/Sources/NFCDemo/EnvironmentValues+ResetPINController.swift b/Sources/NFCDemo/EnvironmentValues+ResetPINController.swift index 954c5f1..2cd7ed4 100644 --- a/Sources/NFCDemo/EnvironmentValues+ResetPINController.swift +++ b/Sources/NFCDemo/EnvironmentValues+ResetPINController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SwiftUI diff --git a/Sources/NFCDemo/EnvironmentValues+SigningFunctionController.swift b/Sources/NFCDemo/EnvironmentValues+SigningFunctionController.swift index 2d2175c..b769ea3 100644 --- a/Sources/NFCDemo/EnvironmentValues+SigningFunctionController.swift +++ b/Sources/NFCDemo/EnvironmentValues+SigningFunctionController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SwiftUI diff --git a/Sources/NFCDemo/KeyboardHeight.swift b/Sources/NFCDemo/KeyboardHeight.swift index 2f90e91..9cad942 100644 --- a/Sources/NFCDemo/KeyboardHeight.swift +++ b/Sources/NFCDemo/KeyboardHeight.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SwiftUI diff --git a/Sources/NFCDemo/Logger.swift b/Sources/NFCDemo/Logger.swift index 1c2dc46..4bd5122 100644 --- a/Sources/NFCDemo/Logger.swift +++ b/Sources/NFCDemo/Logger.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import OSLog diff --git a/Sources/NFCDemo/NFC/CardReaderProviderApi+LocalizedError.swift b/Sources/NFCDemo/NFC/CardReaderProviderApi+LocalizedError.swift index 1b21463..001c847 100644 --- a/Sources/NFCDemo/NFC/CardReaderProviderApi+LocalizedError.swift +++ b/Sources/NFCDemo/NFC/CardReaderProviderApi+LocalizedError.swift @@ -1,18 +1,22 @@ // swiftlint:disable:this file_name // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/NFCDemo/NFC/HealthCardAccess+LocalizedError.swift b/Sources/NFCDemo/NFC/HealthCardAccess+LocalizedError.swift index e7b3608..794c93a 100644 --- a/Sources/NFCDemo/NFC/HealthCardAccess+LocalizedError.swift +++ b/Sources/NFCDemo/NFC/HealthCardAccess+LocalizedError.swift @@ -1,18 +1,22 @@ // swiftlint:disable:this file_name // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/NFCDemo/NFC/HealthCardControl+LocalizedError.swift b/Sources/NFCDemo/NFC/HealthCardControl+LocalizedError.swift index 45ea18a..a9fd1ef 100644 --- a/Sources/NFCDemo/NFC/HealthCardControl+LocalizedError.swift +++ b/Sources/NFCDemo/NFC/HealthCardControl+LocalizedError.swift @@ -1,18 +1,22 @@ // swiftlint:disable:this file_name // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/NFCDemo/NFC/NFCCardReaderProvider+LocalizedError.swift b/Sources/NFCDemo/NFC/NFCCardReaderProvider+LocalizedError.swift index b670553..b7042f6 100644 --- a/Sources/NFCDemo/NFC/NFCCardReaderProvider+LocalizedError.swift +++ b/Sources/NFCDemo/NFC/NFCCardReaderProvider+LocalizedError.swift @@ -1,18 +1,22 @@ // swiftlint:disable:this file_name // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CoreNFC diff --git a/Sources/NFCDemo/NFC/NFCChangeReferenceDataController.swift b/Sources/NFCDemo/NFC/NFCChangeReferenceDataController.swift index edf6d76..8d8b481 100644 --- a/Sources/NFCDemo/NFC/NFCChangeReferenceDataController.swift +++ b/Sources/NFCDemo/NFC/NFCChangeReferenceDataController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/NFCDemo/NFC/NFCReadPersonalDataController.swift b/Sources/NFCDemo/NFC/NFCReadPersonalDataController.swift index f1748f8..485d5a0 100644 --- a/Sources/NFCDemo/NFC/NFCReadPersonalDataController.swift +++ b/Sources/NFCDemo/NFC/NFCReadPersonalDataController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/NFCDemo/NFC/NFCResetRetryCounterController.swift b/Sources/NFCDemo/NFC/NFCResetRetryCounterController.swift index 6147ee0..9550d2d 100644 --- a/Sources/NFCDemo/NFC/NFCResetRetryCounterController.swift +++ b/Sources/NFCDemo/NFC/NFCResetRetryCounterController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/NFCDemo/NFC/NFCSigningFunctionController.swift b/Sources/NFCDemo/NFC/NFCSigningFunctionController.swift index 1f6b04f..1250682 100644 --- a/Sources/NFCDemo/NFC/NFCSigningFunctionController.swift +++ b/Sources/NFCDemo/NFC/NFCSigningFunctionController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Sources/NFCDemo/SceneDelegate.swift b/Sources/NFCDemo/SceneDelegate.swift index b19153e..c6ec8fc 100644 --- a/Sources/NFCDemo/SceneDelegate.swift +++ b/Sources/NFCDemo/SceneDelegate.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SwiftUI diff --git a/Sources/NFCDemo/Screens/Colors.swift b/Sources/NFCDemo/Screens/Colors.swift index 6948640..203eef7 100644 --- a/Sources/NFCDemo/Screens/Colors.swift +++ b/Sources/NFCDemo/Screens/Colors.swift @@ -1,18 +1,23 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. // +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. +// + import SwiftUI struct Colors { diff --git a/Sources/NFCDemo/Screens/FOSS/DataPrivacyTermsOfUseNavigationDelegate.swift b/Sources/NFCDemo/Screens/FOSS/DataPrivacyTermsOfUseNavigationDelegate.swift index 14f982a..09e3f7a 100644 --- a/Sources/NFCDemo/Screens/FOSS/DataPrivacyTermsOfUseNavigationDelegate.swift +++ b/Sources/NFCDemo/Screens/FOSS/DataPrivacyTermsOfUseNavigationDelegate.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2025 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/NFCDemo/Screens/FOSS/FOSSView.swift b/Sources/NFCDemo/Screens/FOSS/FOSSView.swift index c3e7d34..b9eb6af 100644 --- a/Sources/NFCDemo/Screens/FOSS/FOSSView.swift +++ b/Sources/NFCDemo/Screens/FOSS/FOSSView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2025 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SwiftUI diff --git a/Sources/NFCDemo/Screens/GTextButton.swift b/Sources/NFCDemo/Screens/GTextButton.swift index de2898f..bac29d0 100644 --- a/Sources/NFCDemo/Screens/GTextButton.swift +++ b/Sources/NFCDemo/Screens/GTextButton.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SwiftUI diff --git a/Sources/NFCDemo/Screens/Registration/ActivityViewController.swift b/Sources/NFCDemo/Screens/Registration/ActivityViewController.swift index 0fc2773..ce6ae13 100644 --- a/Sources/NFCDemo/Screens/Registration/ActivityViewController.swift +++ b/Sources/NFCDemo/Screens/Registration/ActivityViewController.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/NFCDemo/Screens/Registration/ChangeReferenceDataSetNewPINView.swift b/Sources/NFCDemo/Screens/Registration/ChangeReferenceDataSetNewPINView.swift index b9dab66..b6cafb6 100644 --- a/Sources/NFCDemo/Screens/Registration/ChangeReferenceDataSetNewPINView.swift +++ b/Sources/NFCDemo/Screens/Registration/ChangeReferenceDataSetNewPINView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/NFCChangeReferenceDataViewModel.swift b/Sources/NFCDemo/Screens/Registration/NFCChangeReferenceDataViewModel.swift index d412e01..16997c7 100644 --- a/Sources/NFCDemo/Screens/Registration/NFCChangeReferenceDataViewModel.swift +++ b/Sources/NFCDemo/Screens/Registration/NFCChangeReferenceDataViewModel.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/NFCReadPersonalDataViewModel.swift b/Sources/NFCDemo/Screens/Registration/NFCReadPersonalDataViewModel.swift index d01c276..0fb5dad 100644 --- a/Sources/NFCDemo/Screens/Registration/NFCReadPersonalDataViewModel.swift +++ b/Sources/NFCDemo/Screens/Registration/NFCReadPersonalDataViewModel.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/NFCResetRetryCounterViewModel.swift b/Sources/NFCDemo/Screens/Registration/NFCResetRetryCounterViewModel.swift index 15ce3d7..ccaa332 100644 --- a/Sources/NFCDemo/Screens/Registration/NFCResetRetryCounterViewModel.swift +++ b/Sources/NFCDemo/Screens/Registration/NFCResetRetryCounterViewModel.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/NFCSigningFunctionViewModel.swift b/Sources/NFCDemo/Screens/Registration/NFCSigningFunctionViewModel.swift index a8bf7a7..ed12948 100644 --- a/Sources/NFCDemo/Screens/Registration/NFCSigningFunctionViewModel.swift +++ b/Sources/NFCDemo/Screens/Registration/NFCSigningFunctionViewModel.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/ReadPersonalDataView.swift b/Sources/NFCDemo/Screens/Registration/ReadPersonalDataView.swift index 1b3e90f..c996969 100644 --- a/Sources/NFCDemo/Screens/Registration/ReadPersonalDataView.swift +++ b/Sources/NFCDemo/Screens/Registration/ReadPersonalDataView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/ReadingResultsView.swift b/Sources/NFCDemo/Screens/Registration/ReadingResultsView.swift index 0b920bf..00c3a9e 100644 --- a/Sources/NFCDemo/Screens/Registration/ReadingResultsView.swift +++ b/Sources/NFCDemo/Screens/Registration/ReadingResultsView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Sources/NFCDemo/Screens/Registration/RegisterCANView.swift b/Sources/NFCDemo/Screens/Registration/RegisterCANView.swift index 97a4406..a64d9f1 100644 --- a/Sources/NFCDemo/Screens/Registration/RegisterCANView.swift +++ b/Sources/NFCDemo/Screens/Registration/RegisterCANView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/RegisterPINView.swift b/Sources/NFCDemo/Screens/Registration/RegisterPINView.swift index 69e4ddb..3f42a95 100644 --- a/Sources/NFCDemo/Screens/Registration/RegisterPINView.swift +++ b/Sources/NFCDemo/Screens/Registration/RegisterPINView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/ResetRetryCounterView.swift b/Sources/NFCDemo/Screens/Registration/ResetRetryCounterView.swift index 713bac3..82c37a0 100644 --- a/Sources/NFCDemo/Screens/Registration/ResetRetryCounterView.swift +++ b/Sources/NFCDemo/Screens/Registration/ResetRetryCounterView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/ResetRetryCounterWithNewPINView.swift b/Sources/NFCDemo/Screens/Registration/ResetRetryCounterWithNewPINView.swift index 86fb210..8b8939b 100644 --- a/Sources/NFCDemo/Screens/Registration/ResetRetryCounterWithNewPINView.swift +++ b/Sources/NFCDemo/Screens/Registration/ResetRetryCounterWithNewPINView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/Registration/StartNFCView.swift b/Sources/NFCDemo/Screens/Registration/StartNFCView.swift index 1455842..85b6038 100644 --- a/Sources/NFCDemo/Screens/Registration/StartNFCView.swift +++ b/Sources/NFCDemo/Screens/Registration/StartNFCView.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Sources/NFCDemo/Screens/ViewState.swift b/Sources/NFCDemo/Screens/ViewState.swift index 411ccf5..89de09c 100644 --- a/Sources/NFCDemo/Screens/ViewState.swift +++ b/Sources/NFCDemo/Screens/ViewState.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/CardReaderAccessTests/CardReaderControllerManagerTest.swift b/Tests/CardReaderAccessTests/CardReaderControllerManagerTest.swift index ea51984..bb6f3c6 100644 --- a/Tests/CardReaderAccessTests/CardReaderControllerManagerTest.swift +++ b/Tests/CardReaderAccessTests/CardReaderControllerManagerTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardReaderAccess diff --git a/Tests/CardReaderAccessTests/XCTestManifests.swift b/Tests/CardReaderAccessTests/XCTestManifests.swift index ce75c4f..fae1414 100644 --- a/Tests/CardReaderAccessTests/XCTestManifests.swift +++ b/Tests/CardReaderAccessTests/XCTestManifests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import XCTest diff --git a/Tests/CardReaderAccessTests/internal/SwiftExtReflectionTest.swift b/Tests/CardReaderAccessTests/internal/SwiftExtReflectionTest.swift index 191d505..894968e 100644 --- a/Tests/CardReaderAccessTests/internal/SwiftExtReflectionTest.swift +++ b/Tests/CardReaderAccessTests/internal/SwiftExtReflectionTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardReaderAccess diff --git a/Tests/CardReaderProviderApiTests/Command/APDUCommandTest.swift b/Tests/CardReaderProviderApiTests/Command/APDUCommandTest.swift index 2b36443..b2ae538 100644 --- a/Tests/CardReaderProviderApiTests/Command/APDUCommandTest.swift +++ b/Tests/CardReaderProviderApiTests/Command/APDUCommandTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardReaderProviderApi diff --git a/Tests/CardReaderProviderApiTests/Command/APDUResponseTest.swift b/Tests/CardReaderProviderApiTests/Command/APDUResponseTest.swift index a598890..deccb10 100644 --- a/Tests/CardReaderProviderApiTests/Command/APDUResponseTest.swift +++ b/Tests/CardReaderProviderApiTests/Command/APDUResponseTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardReaderProviderApi diff --git a/Tests/CardReaderProviderApiTests/Command/CommandTypeExtLogicChannelTests.swift b/Tests/CardReaderProviderApiTests/Command/CommandTypeExtLogicChannelTests.swift index 6fd6459..bba9169 100644 --- a/Tests/CardReaderProviderApiTests/Command/CommandTypeExtLogicChannelTests.swift +++ b/Tests/CardReaderProviderApiTests/Command/CommandTypeExtLogicChannelTests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardReaderProviderApi diff --git a/Tests/CardReaderProviderApiTests/Reader/CardReaderTest.swift b/Tests/CardReaderProviderApiTests/Reader/CardReaderTest.swift index 70c672d..cf6b72c 100644 --- a/Tests/CardReaderProviderApiTests/Reader/CardReaderTest.swift +++ b/Tests/CardReaderProviderApiTests/Reader/CardReaderTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import CardReaderProviderApi diff --git a/Tests/HealthCardAccessTests/CardObjects/ApplicationIdentifierTest.swift b/Tests/HealthCardAccessTests/CardObjects/ApplicationIdentifierTest.swift index 331dd22..88816d4 100644 --- a/Tests/HealthCardAccessTests/CardObjects/ApplicationIdentifierTest.swift +++ b/Tests/HealthCardAccessTests/CardObjects/ApplicationIdentifierTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import HealthCardAccess diff --git a/Tests/HealthCardAccessTests/CardObjects/FileControlParameterTest.swift b/Tests/HealthCardAccessTests/CardObjects/FileControlParameterTest.swift index 3137b2c..c912c6b 100644 --- a/Tests/HealthCardAccessTests/CardObjects/FileControlParameterTest.swift +++ b/Tests/HealthCardAccessTests/CardObjects/FileControlParameterTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import HealthCardAccess diff --git a/Tests/HealthCardAccessTests/CardObjects/FileIdentifierTest.swift b/Tests/HealthCardAccessTests/CardObjects/FileIdentifierTest.swift index ca28e34..5158038 100644 --- a/Tests/HealthCardAccessTests/CardObjects/FileIdentifierTest.swift +++ b/Tests/HealthCardAccessTests/CardObjects/FileIdentifierTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import HealthCardAccess diff --git a/Tests/HealthCardAccessTests/CardObjects/Format2PinTest.swift b/Tests/HealthCardAccessTests/CardObjects/Format2PinTest.swift index 957a830..000e29f 100644 --- a/Tests/HealthCardAccessTests/CardObjects/Format2PinTest.swift +++ b/Tests/HealthCardAccessTests/CardObjects/Format2PinTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import HealthCardAccess diff --git a/Tests/HealthCardAccessTests/CardObjects/GemCvCertificateTest.swift b/Tests/HealthCardAccessTests/CardObjects/GemCvCertificateTest.swift index 88d0257..83b8565 100644 --- a/Tests/HealthCardAccessTests/CardObjects/GemCvCertificateTest.swift +++ b/Tests/HealthCardAccessTests/CardObjects/GemCvCertificateTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Tests/HealthCardAccessTests/CardObjects/KeyTest.swift b/Tests/HealthCardAccessTests/CardObjects/KeyTest.swift index dd6da94..e8ec58b 100644 --- a/Tests/HealthCardAccessTests/CardObjects/KeyTest.swift +++ b/Tests/HealthCardAccessTests/CardObjects/KeyTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import HealthCardAccess diff --git a/Tests/HealthCardAccessTests/CardObjects/PasswordTest.swift b/Tests/HealthCardAccessTests/CardObjects/PasswordTest.swift index 38685d0..de3b456 100644 --- a/Tests/HealthCardAccessTests/CardObjects/PasswordTest.swift +++ b/Tests/HealthCardAccessTests/CardObjects/PasswordTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import HealthCardAccess diff --git a/Tests/HealthCardAccessTests/CardObjects/ShortFileIdentifierTest.swift b/Tests/HealthCardAccessTests/CardObjects/ShortFileIdentifierTest.swift index 0281b30..abca28c 100644 --- a/Tests/HealthCardAccessTests/CardObjects/ShortFileIdentifierTest.swift +++ b/Tests/HealthCardAccessTests/CardObjects/ShortFileIdentifierTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import HealthCardAccess diff --git a/Tests/HealthCardAccessTests/Commands/DataExtNormalize.swift b/Tests/HealthCardAccessTests/Commands/DataExtNormalize.swift index a3797df..48f0b17 100644 --- a/Tests/HealthCardAccessTests/Commands/DataExtNormalize.swift +++ b/Tests/HealthCardAccessTests/Commands/DataExtNormalize.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardAccessTests/Commands/HCCExtAccessStructuredDataTest.swift b/Tests/HealthCardAccessTests/Commands/HCCExtAccessStructuredDataTest.swift index 13dcac2..05b2062 100644 --- a/Tests/HealthCardAccessTests/Commands/HCCExtAccessStructuredDataTest.swift +++ b/Tests/HealthCardAccessTests/Commands/HCCExtAccessStructuredDataTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Tests/HealthCardAccessTests/Commands/HCCExtAccessTransparentDataTest.swift b/Tests/HealthCardAccessTests/Commands/HCCExtAccessTransparentDataTest.swift index 0f29030..c47c958 100644 --- a/Tests/HealthCardAccessTests/Commands/HCCExtAccessTransparentDataTest.swift +++ b/Tests/HealthCardAccessTests/Commands/HCCExtAccessTransparentDataTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Tests/HealthCardAccessTests/Commands/HCCExtAuthenticationTest.swift b/Tests/HealthCardAccessTests/Commands/HCCExtAuthenticationTest.swift index a6caa9a..156ad0f 100644 --- a/Tests/HealthCardAccessTests/Commands/HCCExtAuthenticationTest.swift +++ b/Tests/HealthCardAccessTests/Commands/HCCExtAuthenticationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Tests/HealthCardAccessTests/Commands/HCCExtManageSETest.swift b/Tests/HealthCardAccessTests/Commands/HCCExtManageSETest.swift index be17e16..819e581 100644 --- a/Tests/HealthCardAccessTests/Commands/HCCExtManageSETest.swift +++ b/Tests/HealthCardAccessTests/Commands/HCCExtManageSETest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Tests/HealthCardAccessTests/Commands/HCCExtMiscTest.swift b/Tests/HealthCardAccessTests/Commands/HCCExtMiscTest.swift index a888c6b..8900c5a 100644 --- a/Tests/HealthCardAccessTests/Commands/HCCExtMiscTest.swift +++ b/Tests/HealthCardAccessTests/Commands/HCCExtMiscTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Tests/HealthCardAccessTests/Commands/HCCExtObjectSystemManagementTest.swift b/Tests/HealthCardAccessTests/Commands/HCCExtObjectSystemManagementTest.swift index 26e9736..c7b3f1d 100644 --- a/Tests/HealthCardAccessTests/Commands/HCCExtObjectSystemManagementTest.swift +++ b/Tests/HealthCardAccessTests/Commands/HCCExtObjectSystemManagementTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Tests/HealthCardAccessTests/Commands/HCCExtPerformSecurityOperationTest.swift b/Tests/HealthCardAccessTests/Commands/HCCExtPerformSecurityOperationTest.swift index 2baeb2f..e21a4a2 100644 --- a/Tests/HealthCardAccessTests/Commands/HCCExtPerformSecurityOperationTest.swift +++ b/Tests/HealthCardAccessTests/Commands/HCCExtPerformSecurityOperationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Tests/HealthCardAccessTests/Commands/HCCExtUserVerificationTest.swift b/Tests/HealthCardAccessTests/Commands/HCCExtUserVerificationTest.swift index 20da344..b2b66be 100644 --- a/Tests/HealthCardAccessTests/Commands/HCCExtUserVerificationTest.swift +++ b/Tests/HealthCardAccessTests/Commands/HCCExtUserVerificationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardAccessTests/Commands/HealthCardCommandBuilderTest.swift b/Tests/HealthCardAccessTests/Commands/HealthCardCommandBuilderTest.swift index 03067b8..2f5fafa 100644 --- a/Tests/HealthCardAccessTests/Commands/HealthCardCommandBuilderTest.swift +++ b/Tests/HealthCardAccessTests/Commands/HealthCardCommandBuilderTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Tests/HealthCardAccessTests/HealthCardPropertyTypeTest.swift b/Tests/HealthCardAccessTests/HealthCardPropertyTypeTest.swift index c5d8e10..71064ac 100644 --- a/Tests/HealthCardAccessTests/HealthCardPropertyTypeTest.swift +++ b/Tests/HealthCardAccessTests/HealthCardPropertyTypeTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardAccessTests/HealthCardStatusTest.swift b/Tests/HealthCardAccessTests/HealthCardStatusTest.swift index d84e9d2..5494374 100644 --- a/Tests/HealthCardAccessTests/HealthCardStatusTest.swift +++ b/Tests/HealthCardAccessTests/HealthCardStatusTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardAccessTests/Models/CANTest.swift b/Tests/HealthCardAccessTests/Models/CANTest.swift index c86e41a..962d9bd 100644 --- a/Tests/HealthCardAccessTests/Models/CANTest.swift +++ b/Tests/HealthCardAccessTests/Models/CANTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Tests/HealthCardAccessTests/Models/CardGenerationTest.swift b/Tests/HealthCardAccessTests/Models/CardGenerationTest.swift index 942dfa7..2942b0e 100644 --- a/Tests/HealthCardAccessTests/Models/CardGenerationTest.swift +++ b/Tests/HealthCardAccessTests/Models/CardGenerationTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardAccessTests/Models/CardVersion2Test.swift b/Tests/HealthCardAccessTests/Models/CardVersion2Test.swift index d05ef8a..097757a 100644 --- a/Tests/HealthCardAccessTests/Models/CardVersion2Test.swift +++ b/Tests/HealthCardAccessTests/Models/CardVersion2Test.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardAccessTests/Models/ECCurveInfoTest.swift b/Tests/HealthCardAccessTests/Models/ECCurveInfoTest.swift index 19f8504..2fe83c9 100644 --- a/Tests/HealthCardAccessTests/Models/ECCurveInfoTest.swift +++ b/Tests/HealthCardAccessTests/Models/ECCurveInfoTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import ASN1Kit diff --git a/Tests/HealthCardAccessTests/Models/SignatureAlgorithmTest.swift b/Tests/HealthCardAccessTests/Models/SignatureAlgorithmTest.swift index 4f9485e..6561259 100644 --- a/Tests/HealthCardAccessTests/Models/SignatureAlgorithmTest.swift +++ b/Tests/HealthCardAccessTests/Models/SignatureAlgorithmTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardAccessTests/Responses/HealthCardResponseTest.swift b/Tests/HealthCardAccessTests/Responses/HealthCardResponseTest.swift index 36f29c9..e251a82 100644 --- a/Tests/HealthCardAccessTests/Responses/HealthCardResponseTest.swift +++ b/Tests/HealthCardAccessTests/Responses/HealthCardResponseTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Tests/HealthCardAccessTests/Util/AnyPublisher+Test.swift b/Tests/HealthCardAccessTests/Util/AnyPublisher+Test.swift index e2aa330..a2c9c67 100644 --- a/Tests/HealthCardAccessTests/Util/AnyPublisher+Test.swift +++ b/Tests/HealthCardAccessTests/Util/AnyPublisher+Test.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Tests/HealthCardAccessTests/Util/ResourceLoader.swift b/Tests/HealthCardAccessTests/Util/ResourceLoader.swift index 80b3473..42ab56b 100644 --- a/Tests/HealthCardAccessTests/Util/ResourceLoader.swift +++ b/Tests/HealthCardAccessTests/Util/ResourceLoader.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardControlTests/Crypto/AESTests.swift b/Tests/HealthCardControlTests/Crypto/AESTests.swift index 8f187a1..600fac6 100644 --- a/Tests/HealthCardControlTests/Crypto/AESTests.swift +++ b/Tests/HealthCardControlTests/Crypto/AESTests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CommonCrypto diff --git a/Tests/HealthCardControlTests/Crypto/DataSecureTest.swift b/Tests/HealthCardControlTests/Crypto/DataSecureTest.swift index 51d2201..41900e8 100644 --- a/Tests/HealthCardControlTests/Crypto/DataSecureTest.swift +++ b/Tests/HealthCardControlTests/Crypto/DataSecureTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardControlTests/Crypto/KeyDerivationFunctionTest.swift b/Tests/HealthCardControlTests/Crypto/KeyDerivationFunctionTest.swift index 2d6ead8..9f68b1d 100644 --- a/Tests/HealthCardControlTests/Crypto/KeyDerivationFunctionTest.swift +++ b/Tests/HealthCardControlTests/Crypto/KeyDerivationFunctionTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import HealthCardControl diff --git a/Tests/HealthCardControlTests/ResourceLoader.swift b/Tests/HealthCardControlTests/ResourceLoader.swift index 80b3473..42ab56b 100644 --- a/Tests/HealthCardControlTests/ResourceLoader.swift +++ b/Tests/HealthCardControlTests/ResourceLoader.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2024 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Foundation diff --git a/Tests/HealthCardControlTests/SecureMessaging/AES128PaceKeyTest.swift b/Tests/HealthCardControlTests/SecureMessaging/AES128PaceKeyTest.swift index 30d634c..dab4aab 100644 --- a/Tests/HealthCardControlTests/SecureMessaging/AES128PaceKeyTest.swift +++ b/Tests/HealthCardControlTests/SecureMessaging/AES128PaceKeyTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Tests/HealthCardControlTests/SecureMessaging/HealthCardTypeExtESIGNTest.swift b/Tests/HealthCardControlTests/SecureMessaging/HealthCardTypeExtESIGNTest.swift index 74754c1..359421c 100644 --- a/Tests/HealthCardControlTests/SecureMessaging/HealthCardTypeExtESIGNTest.swift +++ b/Tests/HealthCardControlTests/SecureMessaging/HealthCardTypeExtESIGNTest.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Tests/HealthCardControlTests/SecureMessaging/ResponseType+Bytes.swift b/Tests/HealthCardControlTests/SecureMessaging/ResponseType+Bytes.swift index ed0f85c..8faaf7b 100644 --- a/Tests/HealthCardControlTests/SecureMessaging/ResponseType+Bytes.swift +++ b/Tests/HealthCardControlTests/SecureMessaging/ResponseType+Bytes.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import CardReaderProviderApi diff --git a/Tests/HealthCardControlTests/Util/AnyPublisher+Test.swift b/Tests/HealthCardControlTests/Util/AnyPublisher+Test.swift index 815f2ab..9b93b89 100644 --- a/Tests/HealthCardControlTests/Util/AnyPublisher+Test.swift +++ b/Tests/HealthCardControlTests/Util/AnyPublisher+Test.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Combine diff --git a/Tests/NFCDemoTests/ReadingResultsViewSnapshotTests.swift b/Tests/NFCDemoTests/ReadingResultsViewSnapshotTests.swift index f985047..b390716 100644 --- a/Tests/NFCDemoTests/ReadingResultsViewSnapshotTests.swift +++ b/Tests/NFCDemoTests/ReadingResultsViewSnapshotTests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import Helper diff --git a/Tests/NFCDemoTests/RegisterCANViewSnapshotTests.swift b/Tests/NFCDemoTests/RegisterCANViewSnapshotTests.swift index d3fe2b8..0a26af4 100644 --- a/Tests/NFCDemoTests/RegisterCANViewSnapshotTests.swift +++ b/Tests/NFCDemoTests/RegisterCANViewSnapshotTests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import NFCDemo diff --git a/Tests/NFCDemoTests/RegisterPINViewSnapshotTests.swift b/Tests/NFCDemoTests/RegisterPINViewSnapshotTests.swift index b84f5ad..1610a0f 100644 --- a/Tests/NFCDemoTests/RegisterPINViewSnapshotTests.swift +++ b/Tests/NFCDemoTests/RegisterPINViewSnapshotTests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import NFCDemo diff --git a/Tests/NFCDemoTests/StartNFCViewSnapshotTests.swift b/Tests/NFCDemoTests/StartNFCViewSnapshotTests.swift index 9ce4e63..c35e160 100644 --- a/Tests/NFCDemoTests/StartNFCViewSnapshotTests.swift +++ b/Tests/NFCDemoTests/StartNFCViewSnapshotTests.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // @testable import NFCDemo diff --git a/Tests/NFCDemoTests/XCTestCase+SnapshotHelper.swift b/Tests/NFCDemoTests/XCTestCase+SnapshotHelper.swift index a69bcf3..d80c010 100644 --- a/Tests/NFCDemoTests/XCTestCase+SnapshotHelper.swift +++ b/Tests/NFCDemoTests/XCTestCase+SnapshotHelper.swift @@ -1,17 +1,21 @@ // -// Copyright (c) 2023 gematik GmbH +// Copyright (Change Date see Readme), gematik GmbH // -// Licensed under the Apache License, Version 2.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an 'AS IS' BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +// ******* +// +// For additional notes and disclaimer from gematik and in case of changes by gematik find details in the "Readme" file. // import SnapshotTesting diff --git a/doc/userguide/OHCKIT_GettingStarted.adoc b/doc/userguide/OHCKIT_GettingStarted.adoc deleted file mode 100644 index e700f90..0000000 --- a/doc/userguide/OHCKIT_GettingStarted.adoc +++ /dev/null @@ -1,20 +0,0 @@ -== Getting Started - -OpenHealthCardKit requires Swift 5.6. - -=== Setup for integration - -- **Swift Package Manager:** Put this in your `Package.swift`: - - .package(url: "https://github.com/gematik/ref-OpenHealthCardKit", from: "5.6.0"), - -- **Carthage:** Put this in your `Cartfile`: - - github "gematik/ref-openHealthCardKit" ~> 5.0 - -=== Setup for development - -Run `$ make setup` to start developing locally. This will make sure all the dependencies are put in place and the Xcode-project will be generated and/or overwritten. - -Dependencies are a mix of SPM (Swift Package Manager) and Carthage right now. The Xcode-project is generated using `xcodegen`. -The more complex build configuration(s) is done with the help of Fastlane. See the `./fastlane` directory for full setup. \ No newline at end of file