This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,39 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Configuration.Assemblies
{
/// <summary>Specifies all the hash algorithms used for hashing files and for generating the strong name.</summary>
// Token: 0x020001BA RID: 442
[Token(Token = "0x20001BA")]
[ComVisible(true)]
[Serializable]
public enum AssemblyHashAlgorithm
{
/// <summary>A mask indicating that there is no hash algorithm. If you specify <see langword="None" /> for a multi-module assembly, the common language runtime defaults to the SHA1 algorithm, since multi-module assemblies need to generate a hash.</summary>
// Token: 0x040008CC RID: 2252
[Token(Token = "0x40008CC")]
None,
/// <summary>Retrieves the MD5 message-digest algorithm. MD5 was developed by Rivest in 1991. It is basically MD4 with safety-belts and while it is slightly slower than MD4, it helps provide more security. The algorithm consists of four distinct rounds, which has a slightly different design from that of MD4. Message-digest size, as well as padding requirements, remain the same.</summary>
// Token: 0x040008CD RID: 2253
[Token(Token = "0x40008CD")]
MD5 = 32771,
/// <summary>A mask used to retrieve a revision of the Secure Hash Algorithm that corrects an unpublished flaw in SHA.</summary>
// Token: 0x040008CE RID: 2254
[Token(Token = "0x40008CE")]
SHA1,
/// <summary>A mask used to retrieve a version of the Secure Hash Algorithm with a hash size of 256 bits.</summary>
// Token: 0x040008CF RID: 2255
[Token(Token = "0x40008CF")]
SHA256 = 32780,
/// <summary>A mask used to retrieve a version of the Secure Hash Algorithm with a hash size of 384 bits.</summary>
// Token: 0x040008D0 RID: 2256
[Token(Token = "0x40008D0")]
SHA384,
/// <summary>A mask used to retrieve a version of the Secure Hash Algorithm with a hash size of 512 bits.</summary>
// Token: 0x040008D1 RID: 2257
[Token(Token = "0x40008D1")]
SHA512
}
}
@@ -0,0 +1,27 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Configuration.Assemblies
{
/// <summary>Defines the different types of assembly version compatibility. This feature is not available in version 1.0 of the .NET Framework.</summary>
// Token: 0x020001BB RID: 443
[Token(Token = "0x20001BB")]
[ComVisible(true)]
[Serializable]
public enum AssemblyVersionCompatibility
{
/// <summary>The assembly cannot execute with other versions if they are executing on the same machine.</summary>
// Token: 0x040008D3 RID: 2259
[Token(Token = "0x40008D3")]
SameMachine = 1,
/// <summary>The assembly cannot execute with other versions if they are executing in the same process.</summary>
// Token: 0x040008D4 RID: 2260
[Token(Token = "0x40008D4")]
SameProcess,
/// <summary>The assembly cannot execute with other versions if they are executing in the same application domain.</summary>
// Token: 0x040008D5 RID: 2261
[Token(Token = "0x40008D5")]
SameDomain
}
}