add all
This commit is contained in:
49
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/OidTokenizer.cs
vendored
Normal file
49
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/OidTokenizer.cs
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
||||
{
|
||||
/**
|
||||
* class for breaking up an Oid into it's component tokens, ala
|
||||
* java.util.StringTokenizer. We need this class as some of the
|
||||
* lightweight Java environment don't support classes like
|
||||
* StringTokenizer.
|
||||
*/
|
||||
public class OidTokenizer
|
||||
{
|
||||
private string oid;
|
||||
private int index;
|
||||
|
||||
public OidTokenizer(
|
||||
string oid)
|
||||
{
|
||||
this.oid = oid;
|
||||
}
|
||||
|
||||
public bool HasMoreTokens
|
||||
{
|
||||
get { return index != -1; }
|
||||
}
|
||||
|
||||
public string NextToken()
|
||||
{
|
||||
if (index == -1)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
int end = oid.IndexOf('.', index);
|
||||
if (end == -1)
|
||||
{
|
||||
string lastToken = oid.Substring(index);
|
||||
index = -1;
|
||||
return lastToken;
|
||||
}
|
||||
|
||||
string nextToken = oid.Substring(index, end - index);
|
||||
index = end + 1;
|
||||
return nextToken;
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user