2 overrides of SignDataCore
System.Security.Cryptography (2)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsaCng.Windows.cs (1)
69
protected override int
SignDataCore
(ReadOnlySpan<byte> data, ReadOnlySpan<byte> context, Span<byte> destination)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsaImplementation.Windows.cs (1)
40
protected override int
SignDataCore
(ReadOnlySpan<byte> data, ReadOnlySpan<byte> context, Span<byte> destination)
3 references to SignDataCore
System.Security.Cryptography (3)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\CompositeMLDsa.cs (3)
149
int bytesWritten =
SignDataCore
(new ReadOnlySpan<byte>(data), new ReadOnlySpan<byte>(context), signature);
161
int bytesWritten =
SignDataCore
(
223
int bytesWritten =
SignDataCore
(data, context, destination.Slice(0, Algorithm.MaxSignatureSizeInBytes));