IPAddress.cs :  » PDF » iTextSharp » Org » BouncyCastle » Utilities » Net » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » PDF » iTextSharp 
iTextSharp » Org » BouncyCastle » Utilities » Net » IPAddress.cs
using System;
using System.Globalization;

using Org.BouncyCastle.Math;

namespace Org.BouncyCastle.Utilities.Net{
  public class IPAddress
  {
    /**
     * Validate the given IPv4 or IPv6 address.
     *
     * @param address the IP address as a string.
     *
     * @return true if a valid address, false otherwise
     */
    public static bool IsValid(
      string address)
    {
      return IsValidIPv4(address) || IsValidIPv6(address);
    }

    /**
     * Validate the given IPv4 or IPv6 address and netmask.
     *
     * @param address the IP address as a string.
     *
     * @return true if a valid address with netmask, false otherwise
     */
    public static bool IsValidWithNetMask(
      string address)
    {
      return IsValidIPv4WithNetmask(address) || IsValidIPv6WithNetmask(address);
    }

    /**
     * Validate the given IPv4 address.
     * 
     * @param address the IP address as a string.
     *
     * @return true if a valid IPv4 address, false otherwise
     */
    public static bool IsValidIPv4(
      string address)
    {
      try
      {
        return unsafeIsValidIPv4(address);
      }
      catch (FormatException) {}
      catch (OverflowException) {}
      return false;
    }

    private static bool unsafeIsValidIPv4(
      string address)
    {
      if (address.Length == 0)
        return false;

      int octets = 0;
      string temp = address + ".";

      int pos;
      int start = 0;
      while (start < temp.Length
        && (pos = temp.IndexOf('.', start)) > start)
      {
        if (octets == 4)
          return false;

        string octetStr = temp.Substring(start, pos - start);
        int octet = Int32.Parse(octetStr);

        if (octet < 0 || octet > 255)
          return false;

        start = pos + 1;
        octets++;
      }

      return octets == 4;
    }

    public static bool IsValidIPv4WithNetmask(
      string address)
    {
      int index = address.IndexOf("/");
      string mask = address.Substring(index + 1);

      return (index > 0) && IsValidIPv4(address.Substring(0, index))
        && (IsValidIPv4(mask) || IsMaskValue(mask, 32));
    }

    public static bool IsValidIPv6WithNetmask(
      string address)
    {
      int index = address.IndexOf("/");
      string mask = address.Substring(index + 1);

      return (index > 0) && (IsValidIPv6(address.Substring(0, index))
        && (IsValidIPv6(mask) || IsMaskValue(mask, 128)));
    }

    private static bool IsMaskValue(
      string  component,
      int    size)
    {
      int val = Int32.Parse(component);
      try
      {
        return val >= 0 && val <= size;
      }
      catch (FormatException) {}
      catch (OverflowException) {}
      return false;
    }

    /**
     * Validate the given IPv6 address.
     *
     * @param address the IP address as a string.
     *
     * @return true if a valid IPv4 address, false otherwise
     */
    public static bool IsValidIPv6(
      string address)
    {
      try
      {
        return unsafeIsValidIPv6(address);
      }
      catch (FormatException) {}
      catch (OverflowException) {}
      return false;
    }

    private static bool unsafeIsValidIPv6(
      string address)
    {
      if (address.Length == 0)
      {
        return false;
      }

      int octets = 0;

      string temp = address + ":";
      bool doubleColonFound = false;
      int pos;
      int start = 0;
      while (start < temp.Length
        && (pos = temp.IndexOf(':', start)) >= start)
      {
        if (octets == 8)
        {
          return false;
        }

        if (start != pos)
        {
          string value = temp.Substring(start, pos - start);

          if (pos == (temp.Length - 1) && value.IndexOf('.') > 0)
          {
            if (!IsValidIPv4(value))
            {
              return false;
            }

            octets++; // add an extra one as address covers 2 words.
          }
          else
          {
            string octetStr = temp.Substring(start, pos - start);
            int octet = Int32.Parse(octetStr, NumberStyles.AllowHexSpecifier);

            if (octet < 0 || octet > 0xffff)
              return false;
          }
        }
        else
        {
          if (pos != 1 && pos != temp.Length - 1 && doubleColonFound)
          {
            return false;
          }
          doubleColonFound = true;
        }
        start = pos + 1;
        octets++;
      }

      return octets == 8 || doubleColonFound;
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.