培训考核三期,新版培训,网页版培训登录器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

61 lines
2.2 KiB

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using System.Collections;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Digests;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers
{
public class IsoTrailers
{
public const int TRAILER_IMPLICIT = 0xBC;
public const int TRAILER_RIPEMD160 = 0x31CC;
public const int TRAILER_RIPEMD128 = 0x32CC;
public const int TRAILER_SHA1 = 0x33CC;
public const int TRAILER_SHA256 = 0x34CC;
public const int TRAILER_SHA512 = 0x35CC;
public const int TRAILER_SHA384 = 0x36CC;
public const int TRAILER_WHIRLPOOL = 0x37CC;
public const int TRAILER_SHA224 = 0x38CC;
public const int TRAILER_SHA512_224 = 0x39CC;
public const int TRAILER_SHA512_256 = 0x40CC;
private static IDictionary CreateTrailerMap()
{
IDictionary trailers = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable();
trailers.Add("RIPEMD128", TRAILER_RIPEMD128);
trailers.Add("RIPEMD160", TRAILER_RIPEMD160);
trailers.Add("SHA-1", TRAILER_SHA1);
trailers.Add("SHA-224", TRAILER_SHA224);
trailers.Add("SHA-256", TRAILER_SHA256);
trailers.Add("SHA-384", TRAILER_SHA384);
trailers.Add("SHA-512", TRAILER_SHA512);
trailers.Add("SHA-512/224", TRAILER_SHA512_224);
trailers.Add("SHA-512/256", TRAILER_SHA512_256);
trailers.Add("Whirlpool", TRAILER_WHIRLPOOL);
return CollectionUtilities.ReadOnly(trailers);
}
// IDictionary is (string -> Int32)
private static readonly IDictionary trailerMap = CreateTrailerMap();
public static int GetTrailer(IDigest digest)
{
return (int)trailerMap[digest.AlgorithmName];
}
public static bool NoTrailerAvailable(IDigest digest)
{
return !trailerMap.Contains(digest.AlgorithmName);
}
}
}
#pragma warning restore
#endif