I hereby claim:
- I am vcsjones on github.
- I am kjonesolo (https://keybase.io/kjonesolo) on keybase.
- I have a public key whose fingerprint is E339 5431 B045 B2CA 6473 744E 873A C854 61B7 F81F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Folks,
As described in my last email, the board has selected a nomination committee and [opened up nominations][1]. The nomination committee is:
diff --git a/eng/native/configureplatform.cmake b/eng/native/configureplatform.cmake | |
index 8c4ddff8d23..e0819c5d933 100644 | |
--- a/eng/native/configureplatform.cmake | |
+++ b/eng/native/configureplatform.cmake | |
@@ -381,7 +381,7 @@ if(NOT CLR_CMAKE_TARGET_BROWSER) | |
# but since we know that PIE is supported, we can safely skip this redundant check). | |
# | |
# The default linker on Solaris also does not support PIE. | |
- if(NOT CLR_CMAKE_TARGET_ANDROID AND NOT CLR_CMAKE_TARGET_SUNOS) | |
+ if(NOT CLR_CMAKE_TARGET_ANDROID AND NOT CLR_CMAKE_TARGET_SUNOS AND NOT CLR_CMAKE_TARGET_OSX) |
namespace System.Security.Cryptography { | |
public abstract class AsymmetricAlgorithm : IDisposable { | |
+ public virtual void ImportFromEncryptedPem(ReadOnlySpan<char> input, ReadOnlySpan<byte> passwordBytes); | |
+ public virtual void ImportFromEncryptedPem(ReadOnlySpan<char> input, ReadOnlySpan<char> password); | |
+ public virtual void ImportFromPem(ReadOnlySpan<char> input); | |
} | |
public abstract class DSA : AsymmetricAlgorithm { | |
+ public override void ImportFromEncryptedPem(ReadOnlySpan<char> input, ReadOnlySpan<byte> passwordBytes); | |
+ public override void ImportFromEncryptedPem(ReadOnlySpan<char> input, ReadOnlySpan<char> password); |
Method | Job | Toolchain | DataSize | NumberOfOperations | Mode | Algorithm | Mean | Error | StdDev | Ratio | Gen0 | Allocated | Alloc Ratio |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Encrypt_Cbc_ToSpan | Job-VPVYBA | branch | 16 | 1 | PKCS7 | Aes | 606.2 ns | 4.99 ns | 4.67 ns | 1.05 | 0.0658 | 416 B | 1.08 |
Encrypt_Cbc_ToSpan | Job-QKOWKL | main | 16 | 1 | PKCS7 | Aes | 579.0 ns | 2.76 ns | 2.58 ns | 1.00 | 0.0610 | 384 B | 1.00 |
Decrypt_Cbc_ToSpan | Job-VPVYBA | branch | 16 | 1 |
using System; | |
using System.Diagnostics.CodeAnalysis; | |
using System.Runtime.CompilerServices; | |
using System.Runtime.InteropServices; | |
using System.Security.Cryptography; | |
UUIDv7 uuid = new UUIDv7(); | |
Console.WriteLine(uuid.ToString()); | |
public readonly struct UUIDv7 { |