init commit

This commit is contained in:
2025-10-09 09:57:24 +09:00
commit 4d551bd74f
6636 changed files with 1218703 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
namespace Org.BouncyCastle.Asn1.TeleTrust;
public sealed class TeleTrusTObjectIdentifiers
{
public static readonly DerObjectIdentifier TeleTrusTAlgorithm = new DerObjectIdentifier("1.3.36.3");
public static readonly DerObjectIdentifier RipeMD160 = new DerObjectIdentifier(string.Concat(TeleTrusTAlgorithm, ".2.1"));
public static readonly DerObjectIdentifier RipeMD128 = new DerObjectIdentifier(string.Concat(TeleTrusTAlgorithm, ".2.2"));
public static readonly DerObjectIdentifier RipeMD256 = new DerObjectIdentifier(string.Concat(TeleTrusTAlgorithm, ".2.3"));
public static readonly DerObjectIdentifier TeleTrusTRsaSignatureAlgorithm = new DerObjectIdentifier(string.Concat(TeleTrusTAlgorithm, ".3.1"));
public static readonly DerObjectIdentifier RsaSignatureWithRipeMD160 = new DerObjectIdentifier(string.Concat(TeleTrusTRsaSignatureAlgorithm, ".2"));
public static readonly DerObjectIdentifier RsaSignatureWithRipeMD128 = new DerObjectIdentifier(string.Concat(TeleTrusTRsaSignatureAlgorithm, ".3"));
public static readonly DerObjectIdentifier RsaSignatureWithRipeMD256 = new DerObjectIdentifier(string.Concat(TeleTrusTRsaSignatureAlgorithm, ".4"));
public static readonly DerObjectIdentifier ECSign = new DerObjectIdentifier(string.Concat(TeleTrusTAlgorithm, ".3.2"));
public static readonly DerObjectIdentifier ECSignWithSha1 = new DerObjectIdentifier(string.Concat(ECSign, ".1"));
public static readonly DerObjectIdentifier ECSignWithRipeMD160 = new DerObjectIdentifier(string.Concat(ECSign, ".2"));
public static readonly DerObjectIdentifier EccBrainpool = new DerObjectIdentifier(string.Concat(TeleTrusTAlgorithm, ".3.2.8"));
public static readonly DerObjectIdentifier EllipticCurve = new DerObjectIdentifier(string.Concat(EccBrainpool, ".1"));
public static readonly DerObjectIdentifier VersionOne = new DerObjectIdentifier(string.Concat(EllipticCurve, ".1"));
public static readonly DerObjectIdentifier BrainpoolP160R1 = new DerObjectIdentifier(string.Concat(VersionOne, ".1"));
public static readonly DerObjectIdentifier BrainpoolP160T1 = new DerObjectIdentifier(string.Concat(VersionOne, ".2"));
public static readonly DerObjectIdentifier BrainpoolP192R1 = new DerObjectIdentifier(string.Concat(VersionOne, ".3"));
public static readonly DerObjectIdentifier BrainpoolP192T1 = new DerObjectIdentifier(string.Concat(VersionOne, ".4"));
public static readonly DerObjectIdentifier BrainpoolP224R1 = new DerObjectIdentifier(string.Concat(VersionOne, ".5"));
public static readonly DerObjectIdentifier BrainpoolP224T1 = new DerObjectIdentifier(string.Concat(VersionOne, ".6"));
public static readonly DerObjectIdentifier BrainpoolP256R1 = new DerObjectIdentifier(string.Concat(VersionOne, ".7"));
public static readonly DerObjectIdentifier BrainpoolP256T1 = new DerObjectIdentifier(string.Concat(VersionOne, ".8"));
public static readonly DerObjectIdentifier BrainpoolP320R1 = new DerObjectIdentifier(string.Concat(VersionOne, ".9"));
public static readonly DerObjectIdentifier BrainpoolP320T1 = new DerObjectIdentifier(string.Concat(VersionOne, ".10"));
public static readonly DerObjectIdentifier BrainpoolP384R1 = new DerObjectIdentifier(string.Concat(VersionOne, ".11"));
public static readonly DerObjectIdentifier BrainpoolP384T1 = new DerObjectIdentifier(string.Concat(VersionOne, ".12"));
public static readonly DerObjectIdentifier BrainpoolP512R1 = new DerObjectIdentifier(string.Concat(VersionOne, ".13"));
public static readonly DerObjectIdentifier BrainpoolP512T1 = new DerObjectIdentifier(string.Concat(VersionOne, ".14"));
private TeleTrusTObjectIdentifiers()
{
}
}