├── .gitignore ├── LICENSE ├── LibUA.sln ├── NET-Core ├── LibUA.Benchmarks │ ├── LibUA.Benchmarks.csproj │ ├── NodeIds.cs │ └── Program.cs ├── LibUA.Tests │ ├── ClientTests.cs │ ├── Framework │ │ ├── TestClient.cs │ │ ├── TestClientFixture.cs │ │ └── TestServerFixture.cs │ ├── LibUA.Tests.csproj │ └── NodeIdTests.cs ├── LibUA │ ├── AddressSpace.cs │ ├── Application.cs │ ├── Client.cs │ ├── Coding.cs │ ├── LibUA.csproj │ ├── MemoryBuffer.cs │ ├── MemoryBufferExtensions.cs │ ├── NetDispatcher.cs │ ├── Security.cs │ ├── Server.cs │ ├── Types.cs │ └── ValueTypes │ │ ├── EUInformation.cs │ │ └── OpcRange.cs ├── TestClient │ ├── Program.cs │ └── TestClient.csproj └── TestServer │ ├── Program.cs │ └── TestServer.csproj ├── NET └── LibUA │ ├── AddressSpace.cs │ ├── Application.cs │ ├── Client.cs │ ├── Coding.cs │ ├── LibUA.csproj │ ├── MemoryBuffer.cs │ ├── MemoryBufferExtensions.cs │ ├── NetDispatcher.cs │ ├── Security.Cryptography │ ├── AesCng.cs │ ├── AuthenticatedAes.cs │ ├── AuthenticatedAesCng.cs │ ├── AuthenticatedSymmetricAlgorithm.cs │ ├── BCryptAuthenticatedSymmetricAlgorithm.cs │ ├── BCryptAuthenticatedSymmetricCryptoTransform.cs │ ├── BCryptHMAC.cs │ ├── BCryptNative.cs │ ├── BCryptPBKDF2.cs │ ├── BCryptSymmetricAlgorithm.cs │ ├── BCryptSymmetricCryptoTransform.cs │ ├── BlockPaddingMethod.cs │ ├── CapiNative.cs │ ├── CngAlgorithm2.cs │ ├── CngChainingMode.cs │ ├── CngKeyExtensionMethods.cs │ ├── CngProvider2.cs │ ├── CngProviderCollection.cs │ ├── CngProviderExtensionMethods.cs │ ├── CryptoConfig2.cs │ ├── GlobalSuppressions.cs │ ├── HMACSHA256Cng.cs │ ├── HMACSHA384Cng.cs │ ├── HMACSHA512Cng.cs │ ├── IAuthenticatedCryptoTransform.cs │ ├── ICngAlgorithm.cs │ ├── ICngAsymmetricAlgorithm.cs │ ├── ICngSymmetricAlgorithm.cs │ ├── ICryptoTransform2.cs │ ├── NCryptNative.cs │ ├── Oid2.cs │ ├── RNGCng.cs │ ├── RSACng.cs │ ├── RSAPKCS1SHA256SignatureDescription.cs │ ├── TripleDESCng.cs │ ├── Win32Native.cs │ ├── X509Certificates │ │ ├── SafeCertContextHandle.cs │ │ ├── X509AlternateName.cs │ │ ├── X509AlternateNameBlob.cs │ │ ├── X509AlternateNameIPAddress.cs │ │ ├── X509AlternateNameOther.cs │ │ ├── X509AlternateNameString.cs │ │ ├── X509Certificate2ExtensionMethods.cs │ │ ├── X509CertificateCreationParameters.cs │ │ ├── X509CertificateExtensionMethods.cs │ │ └── X509Native.cs │ └── Xml │ │ ├── EncryptedXmlExtensionMethods.cs │ │ ├── TransformFactory.cs │ │ ├── XmlDsigNodeList.cs │ │ └── XmlDsigXPathWithNamespacesTransform.cs │ ├── Security.cs │ ├── Server.cs │ ├── Types.cs │ └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/LICENSE -------------------------------------------------------------------------------- /LibUA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/LibUA.sln -------------------------------------------------------------------------------- /NET-Core/LibUA.Benchmarks/LibUA.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Benchmarks/LibUA.Benchmarks.csproj -------------------------------------------------------------------------------- /NET-Core/LibUA.Benchmarks/NodeIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Benchmarks/NodeIds.cs -------------------------------------------------------------------------------- /NET-Core/LibUA.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Benchmarks/Program.cs -------------------------------------------------------------------------------- /NET-Core/LibUA.Tests/ClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Tests/ClientTests.cs -------------------------------------------------------------------------------- /NET-Core/LibUA.Tests/Framework/TestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Tests/Framework/TestClient.cs -------------------------------------------------------------------------------- /NET-Core/LibUA.Tests/Framework/TestClientFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Tests/Framework/TestClientFixture.cs -------------------------------------------------------------------------------- /NET-Core/LibUA.Tests/Framework/TestServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Tests/Framework/TestServerFixture.cs -------------------------------------------------------------------------------- /NET-Core/LibUA.Tests/LibUA.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Tests/LibUA.Tests.csproj -------------------------------------------------------------------------------- /NET-Core/LibUA.Tests/NodeIdTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA.Tests/NodeIdTests.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/AddressSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/AddressSpace.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/Application.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/Client.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/Coding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/Coding.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/LibUA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/LibUA.csproj -------------------------------------------------------------------------------- /NET-Core/LibUA/MemoryBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/MemoryBuffer.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/MemoryBufferExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/MemoryBufferExtensions.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/NetDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/NetDispatcher.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/Security.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/Server.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/Types.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/ValueTypes/EUInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/ValueTypes/EUInformation.cs -------------------------------------------------------------------------------- /NET-Core/LibUA/ValueTypes/OpcRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/LibUA/ValueTypes/OpcRange.cs -------------------------------------------------------------------------------- /NET-Core/TestClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/TestClient/Program.cs -------------------------------------------------------------------------------- /NET-Core/TestClient/TestClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/TestClient/TestClient.csproj -------------------------------------------------------------------------------- /NET-Core/TestServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/TestServer/Program.cs -------------------------------------------------------------------------------- /NET-Core/TestServer/TestServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET-Core/TestServer/TestServer.csproj -------------------------------------------------------------------------------- /NET/LibUA/AddressSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/AddressSpace.cs -------------------------------------------------------------------------------- /NET/LibUA/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Application.cs -------------------------------------------------------------------------------- /NET/LibUA/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Client.cs -------------------------------------------------------------------------------- /NET/LibUA/Coding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Coding.cs -------------------------------------------------------------------------------- /NET/LibUA/LibUA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/LibUA.csproj -------------------------------------------------------------------------------- /NET/LibUA/MemoryBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/MemoryBuffer.cs -------------------------------------------------------------------------------- /NET/LibUA/MemoryBufferExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/MemoryBufferExtensions.cs -------------------------------------------------------------------------------- /NET/LibUA/NetDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/NetDispatcher.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/AesCng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/AesCng.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/AuthenticatedAes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/AuthenticatedAes.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/AuthenticatedAesCng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/AuthenticatedAesCng.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/AuthenticatedSymmetricAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/AuthenticatedSymmetricAlgorithm.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/BCryptAuthenticatedSymmetricAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/BCryptAuthenticatedSymmetricAlgorithm.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/BCryptAuthenticatedSymmetricCryptoTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/BCryptAuthenticatedSymmetricCryptoTransform.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/BCryptHMAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/BCryptHMAC.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/BCryptNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/BCryptNative.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/BCryptPBKDF2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/BCryptPBKDF2.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/BCryptSymmetricAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/BCryptSymmetricAlgorithm.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/BCryptSymmetricCryptoTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/BCryptSymmetricCryptoTransform.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/BlockPaddingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/BlockPaddingMethod.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/CapiNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/CapiNative.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/CngAlgorithm2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/CngAlgorithm2.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/CngChainingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/CngChainingMode.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/CngKeyExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/CngKeyExtensionMethods.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/CngProvider2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/CngProvider2.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/CngProviderCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/CngProviderCollection.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/CngProviderExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/CngProviderExtensionMethods.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/CryptoConfig2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/CryptoConfig2.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/GlobalSuppressions.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/HMACSHA256Cng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/HMACSHA256Cng.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/HMACSHA384Cng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/HMACSHA384Cng.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/HMACSHA512Cng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/HMACSHA512Cng.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/IAuthenticatedCryptoTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/IAuthenticatedCryptoTransform.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/ICngAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/ICngAlgorithm.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/ICngAsymmetricAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/ICngAsymmetricAlgorithm.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/ICngSymmetricAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/ICngSymmetricAlgorithm.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/ICryptoTransform2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/ICryptoTransform2.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/NCryptNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/NCryptNative.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/Oid2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/Oid2.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/RNGCng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/RNGCng.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/RSACng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/RSACng.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/RSAPKCS1SHA256SignatureDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/RSAPKCS1SHA256SignatureDescription.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/TripleDESCng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/TripleDESCng.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/Win32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/Win32Native.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/SafeCertContextHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/SafeCertContextHandle.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateName.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateNameBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateNameBlob.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateNameIPAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateNameIPAddress.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateNameOther.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateNameOther.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateNameString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509AlternateNameString.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509Certificate2ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509Certificate2ExtensionMethods.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509CertificateCreationParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509CertificateCreationParameters.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509CertificateExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509CertificateExtensionMethods.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/X509Certificates/X509Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/X509Certificates/X509Native.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/Xml/EncryptedXmlExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/Xml/EncryptedXmlExtensionMethods.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/Xml/TransformFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/Xml/TransformFactory.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/Xml/XmlDsigNodeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/Xml/XmlDsigNodeList.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.Cryptography/Xml/XmlDsigXPathWithNamespacesTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.Cryptography/Xml/XmlDsigXPathWithNamespacesTransform.cs -------------------------------------------------------------------------------- /NET/LibUA/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Security.cs -------------------------------------------------------------------------------- /NET/LibUA/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Server.cs -------------------------------------------------------------------------------- /NET/LibUA/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/Types.cs -------------------------------------------------------------------------------- /NET/LibUA/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/NET/LibUA/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nauful/LibUA/HEAD/README.md --------------------------------------------------------------------------------