import UBI dotnet6.0-6.0.130-1.el9_4
This commit is contained in:
parent
728c7e9482
commit
828585f958
@ -1 +1 @@
|
|||||||
50c5c031356e8cc4f362aecdfe819bfcf9581c2a SOURCES/dotnet-v6.0.129.tar.gz
|
d9593a3dc82832112744ba6bbeeabf18dc80cc7e SOURCES/dotnet-v6.0.130.tar.gz
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/dotnet-v6.0.129.tar.gz
|
SOURCES/dotnet-v6.0.130.tar.gz
|
||||||
|
@ -47,33 +47,6 @@ index 55a044d62a6..e72d42e87d2 100644
|
|||||||
using (RSA rsa = RSAFactory.Create(TestData.RSA2048Params))
|
using (RSA rsa = RSAFactory.Create(TestData.RSA2048Params))
|
||||||
{
|
{
|
||||||
void RoundtripEmpty(RSAEncryptionPadding paddingMode)
|
void RoundtripEmpty(RSAEncryptionPadding paddingMode)
|
||||||
@@ -692,26 +701,6 @@ public void NotSupportedValueMethods()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
- [ConditionalTheory]
|
|
||||||
- [InlineData(new byte[] { 1, 2, 3, 4 })]
|
|
||||||
- [InlineData(new byte[0])]
|
|
||||||
- public void Decrypt_Pkcs1_ErrorsForInvalidPadding(byte[] data)
|
|
||||||
- {
|
|
||||||
- if (data.Length == 0 && !PlatformSupportsEmptyRSAEncryption)
|
|
||||||
- {
|
|
||||||
- throw new SkipTestException("Platform does not support RSA encryption of empty data.");
|
|
||||||
- }
|
|
||||||
-
|
|
||||||
- using (RSA rsa = RSAFactory.Create(TestData.RSA2048Params))
|
|
||||||
- {
|
|
||||||
- byte[] encrypted = Encrypt(rsa, data, RSAEncryptionPadding.Pkcs1);
|
|
||||||
- encrypted[1] ^= 0xFF;
|
|
||||||
-
|
|
||||||
- // PKCS#1, the data, and the key are all deterministic so this should always throw an exception.
|
|
||||||
- Assert.ThrowsAny<CryptographicException>(() => Decrypt(rsa, encrypted, RSAEncryptionPadding.Pkcs1));
|
|
||||||
- }
|
|
||||||
- }
|
|
||||||
-
|
|
||||||
[Fact]
|
|
||||||
public void Decrypt_Pkcs1_BadPadding()
|
|
||||||
{
|
|
||||||
@@ -726,23 +715,5 @@ public static IEnumerable<object[]> OaepPaddingModes
|
@@ -726,23 +715,5 @@ public static IEnumerable<object[]> OaepPaddingModes
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -20,10 +20,10 @@
|
|||||||
# until that's done, disable LTO. This has to happen before setting the flags below.
|
# until that's done, disable LTO. This has to happen before setting the flags below.
|
||||||
%define _lto_cflags %{nil}
|
%define _lto_cflags %{nil}
|
||||||
|
|
||||||
%global host_version 6.0.29
|
%global host_version 6.0.30
|
||||||
%global runtime_version 6.0.29
|
%global runtime_version 6.0.30
|
||||||
%global aspnetcore_runtime_version %{runtime_version}
|
%global aspnetcore_runtime_version %{runtime_version}
|
||||||
%global sdk_version 6.0.129
|
%global sdk_version 6.0.130
|
||||||
%global sdk_feature_band_version %(echo %{sdk_version} | sed -e 's|[[:digit:]][[:digit:]]$|00|')
|
%global sdk_feature_band_version %(echo %{sdk_version} | sed -e 's|[[:digit:]][[:digit:]]$|00|')
|
||||||
%global templates_version %{runtime_version}
|
%global templates_version %{runtime_version}
|
||||||
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
|
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
|
||||||
@ -60,7 +60,7 @@
|
|||||||
|
|
||||||
Name: dotnet6.0
|
Name: dotnet6.0
|
||||||
Version: %{sdk_rpm_version}
|
Version: %{sdk_rpm_version}
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: .NET Runtime and SDK
|
Summary: .NET Runtime and SDK
|
||||||
License: MIT and ASL 2.0 and BSD and LGPLv2+ and CC-BY and CC0 and MS-PL and EPL-1.0 and GPL+ and GPLv2 and ISC and OFL and zlib
|
License: MIT and ASL 2.0 and BSD and LGPLv2+ and CC-BY and CC0 and MS-PL and EPL-1.0 and GPL+ and GPLv2 and ISC and OFL and zlib
|
||||||
URL: https://github.com/dotnet/
|
URL: https://github.com/dotnet/
|
||||||
@ -612,6 +612,10 @@ rm -rf %{buildroot}%{_libdir}/dotnet/packs/NETStandard.Library.Ref/2.1.0
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon May 06 2024 Omair Majid <omajid@redhat.com> - 6.0.130-1
|
||||||
|
- Update to .NET SDK 6.0.130 and Runtime 6.0.30
|
||||||
|
- Resolves: RHEL-35310
|
||||||
|
|
||||||
* Tue Apr 09 2024 Omair Majid <omajid@redhat.com> - 6.0.129-2
|
* Tue Apr 09 2024 Omair Majid <omajid@redhat.com> - 6.0.129-2
|
||||||
- Update to .NET SDK 6.0.129 and Runtime 6.0.29
|
- Update to .NET SDK 6.0.129 and Runtime 6.0.29
|
||||||
- Resolves: RHEL-31198
|
- Resolves: RHEL-31198
|
||||||
|
Loading…
Reference in New Issue
Block a user