Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
3d01d78
Merge pull request #1 from dotnet/main
annchous May 4, 2021
ae7b109
add new obsoletion ID
May 5, 2021
232775b
nowarn for new obsoletion
May 5, 2021
f7005f8
add obsoletions to csproj
May 5, 2021
bc94bc7
AesCryptoServiceProvider obsoletion
May 5, 2021
adddf44
DESCryptoServiceProvider obsoletion
May 5, 2021
56775ea
MD5CryptoServiceProvider obsoletion
May 5, 2021
4fdff53
RC2CryptoServiceProvider obsoletion
May 5, 2021
89ecc58
SHA1CryptoServiceProvider obsoletion
May 5, 2021
76ce957
SHA256CryptoServiceProvider obsoletion
May 5, 2021
acf6002
SHA384CryptoServiceProvider obsoletion
May 5, 2021
7724dc9
SHA512CryptoServiceProvider obsoletion
May 5, 2021
1294d03
TripleDESCryptoServiceProvider obsoletion
May 5, 2021
eef5db8
add obsoletions to csproj
May 5, 2021
4fea03a
*Managed obsoletions
May 5, 2021
875a7ce
add pragma suppress for types usages
May 5, 2021
9bbaddd
add nowarn in tests csproj
May 5, 2021
f160484
add documentation
May 5, 2021
ef88b0c
add nowarn to new identified tests csproj
May 5, 2021
06f3e78
add pragma suppress for types usages #2
May 5, 2021
7afc9d5
update documentation
May 6, 2021
665f37d
fix md5 usage
May 6, 2021
b364451
Merge branch 'main' into 46934-cryptographic-obsoletions
jeffhandley May 6, 2021
403413a
Fix indentation
jeffhandley May 6, 2021
4e5bef6
fix obsoletions inclusion in csproj
May 6, 2021
f8067e9
remove extra obsoletions inclusion in csproj
May 6, 2021
4b0f491
De-dupe project items that were in both the browser and non-browser c…
jeffhandley May 6, 2021
5a97ee0
Remove duplicate RandomNumberGeneratorImplementation.cs reference
jeffhandley May 6, 2021
f13b2b7
Update documentation
May 6, 2021
87225b9
Merge branch 'main' into 46934-cryptographic-obsoletions
jeffhandley May 10, 2021
0d5a153
Remove duplicate Obsoletions.cs from project file (introduced in merge)
jeffhandley May 11, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
SHA384CryptoServiceProvider obsoletion
  • Loading branch information
Annchous committed May 5, 2021
commit acf6002272ecd11470966018bfb8bd76420f2ba3
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ protected override void HashCore(System.ReadOnlySpan<byte> source) { }
public override void Initialize() { }
protected override bool TryHashFinal(System.Span<byte> destination, out int bytesWritten) { throw null; }
}
[System.ObsoleteAttribute("Derived cryptographic types are obsolete.", DiagnosticId = "SYSLIB0021", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public sealed partial class SHA384CryptoServiceProvider : System.Security.Cryptography.SHA384
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ namespace System.Security.Cryptography
//
// If you change this file, make the corresponding changes to all of the SHA*CryptoServiceProvider.cs files.
//
[Obsolete(Obsoletions.DerivedCryptographicTypesMessage, DiagnosticId = Obsoletions.DerivedCryptographicTypesDiagId, UrlFormat = Obsoletions.SharedUrlFormat)]
[EditorBrowsable(EditorBrowsableState.Never)]
public sealed class SHA384CryptoServiceProvider : SHA384
{
Expand Down