This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
namespace System.Security.Cryptography
{
// Token: 0x020002A3 RID: 675
internal enum AsnDecodeStatus
{
// Token: 0x04001399 RID: 5017
NotDecoded = -1,
// Token: 0x0400139A RID: 5018
Ok,
// Token: 0x0400139B RID: 5019
BadAsn,
// Token: 0x0400139C RID: 5020
BadTag,
// Token: 0x0400139D RID: 5021
BadLength,
// Token: 0x0400139E RID: 5022
InformationNotAvailable
}
}