Skip to content

Commit 66dcb43

Browse files
release/8.0.0 (#49)
Core API - Introduces Optional<T> and Result<T> monads. - Introduces FirstOrNone, LastOrNone, and SingleOrNone LINQ extension functions which return Optional<T> and Result<T> monads. Numerics API - Bugfix for an equality bug in BigDecimal and NumberInfo structs. Cryptography API - Cleaner separation of Public/Private key interfaces, allowing for a wider range of key implementations. - Introduces a cryptographic shared secret struct for handling secret values. - Introduces ECDH (Elliptic-Curve Diffie-Hellman) Public/Private keys with shared secret generation. - Introduces in-memory data encryption which has been implemented for all private keys and other sensitive cryptographic information, ensuring that sensitive data is kept secure in-memory.
1 parent 41b3bde commit 66dcb43

File tree

141 files changed

+3756
-1674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+3756
-1674
lines changed

.run/Build.run.xml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Build" type="ShConfigurationType">
3+
<option name="SCRIPT_TEXT" value="dotnet build" />
4+
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
5+
<option name="SCRIPT_PATH" value="" />
6+
<option name="SCRIPT_OPTIONS" value="" />
7+
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
8+
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />
9+
<option name="INDEPENDENT_INTERPRETER_PATH" value="true" />
10+
<option name="INTERPRETER_PATH" value="/bin/zsh" />
11+
<option name="INTERPRETER_OPTIONS" value="" />
12+
<option name="EXECUTE_IN_TERMINAL" value="true" />
13+
<option name="EXECUTE_SCRIPT_FILE" value="false" />
14+
<envs />
15+
<method v="2" />
16+
</configuration>
17+
</component>

OnixLabs.Core.UnitTests.Data/OnixLabs.Core.UnitTests.Data.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
<TargetFramework>net8.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
6-
76
<IsPackable>false</IsPackable>
8-
97
<LangVersion>12</LangVersion>
8+
<IsTestProject>false</IsTestProject>
109
</PropertyGroup>
1110
<ItemGroup>
1211
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>

0 commit comments

Comments
 (0)