summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2017-09-17 18:47:43 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2017-09-17 18:47:43 +0700
commitb30a73590e054908e41231dfd200881dcaea0907 (patch)
treef1ab227d10d91f9bee6e32f26c324956c6a394b1 /crypto/src
parentSketch out test changes for ECGOST3410-2012 (diff)
downloadBouncyCastle.NET-ed25519-b30a73590e054908e41231dfd200881dcaea0907.tar.xz
Update SignerLocation to use DirectoryString
- obsolete old UTF8-based methods.
Diffstat (limited to 'crypto/src')
-rw-r--r--crypto/src/asn1/esf/SignerLocation.cs106
-rw-r--r--crypto/src/asn1/x500/DirectoryString.cs9
2 files changed, 70 insertions, 45 deletions
diff --git a/crypto/src/asn1/esf/SignerLocation.cs b/crypto/src/asn1/esf/SignerLocation.cs
index d2cef51bb..16dbcd01f 100644
--- a/crypto/src/asn1/esf/SignerLocation.cs
+++ b/crypto/src/asn1/esf/SignerLocation.cs
@@ -1,7 +1,7 @@
 using System;
 using System.Collections;
 
-using Org.BouncyCastle.Asn1;
+using Org.BouncyCastle.Asn1.X500;
 
 namespace Org.BouncyCastle.Asn1.Esf
 {
@@ -20,10 +20,9 @@ namespace Org.BouncyCastle.Asn1.Esf
 	public class SignerLocation
 		: Asn1Encodable
 	{
-		// TODO Should these be using DirectoryString?
-		private DerUtf8String	countryName;
-		private DerUtf8String	localityName;
-		private Asn1Sequence	postalAddress;
+        private DirectoryString countryName;
+        private DirectoryString localityName;
+        private Asn1Sequence postalAddress;
 
 		public SignerLocation(
 			Asn1Sequence seq)
@@ -33,10 +32,10 @@ namespace Org.BouncyCastle.Asn1.Esf
 				switch (obj.TagNo)
 				{
 					case 0:
-						this.countryName = DerUtf8String.GetInstance(obj, true);
+						this.countryName = DirectoryString.GetInstance(obj, true);
 						break;
 					case 1:
-						this.localityName = DerUtf8String.GetInstance(obj, true);
+                        this.localityName = DirectoryString.GetInstance(obj, true);
 						break;
 					case 2:
 						bool isExplicit = obj.IsExplicit();	// handle erroneous implicitly tagged sequences
@@ -50,33 +49,36 @@ namespace Org.BouncyCastle.Asn1.Esf
 			}
 		}
 
-		public SignerLocation(
-			DerUtf8String	countryName,
-			DerUtf8String	localityName,
-			Asn1Sequence	postalAddress)
-		{
-			if (postalAddress != null && postalAddress.Count > 6)
-			{
-				throw new ArgumentException("postal address must contain less than 6 strings");
-			}
-
-			if (countryName != null)
-			{
-				this.countryName = DerUtf8String.GetInstance(countryName.ToAsn1Object());
-			}
-
-			if (localityName != null)
-			{
-				this.localityName = DerUtf8String.GetInstance(localityName.ToAsn1Object());
-			}
-
-			if (postalAddress != null)
-			{
-				this.postalAddress = (Asn1Sequence) postalAddress.ToAsn1Object();
-			}
-		}
-
-		public static SignerLocation GetInstance(
+        private SignerLocation(
+            DirectoryString countryName,
+            DirectoryString localityName,
+            Asn1Sequence postalAddress)
+        {
+            if (postalAddress != null && postalAddress.Count > 6)
+                throw new ArgumentException("postal address must contain less than 6 strings");
+
+            this.countryName = countryName;
+            this.localityName = localityName;
+            this.postalAddress = postalAddress;
+        }
+
+        public SignerLocation(
+            DirectoryString countryName,
+            DirectoryString localityName,
+            DirectoryString[] postalAddress)
+            : this(countryName, localityName, new DerSequence(postalAddress))
+        {
+        }
+
+        public SignerLocation(
+            DerUtf8String countryName,
+            DerUtf8String localityName,
+            Asn1Sequence postalAddress)
+            : this(DirectoryString.GetInstance(countryName), DirectoryString.GetInstance(localityName), postalAddress)
+        {
+        }
+
+        public static SignerLocation GetInstance(
 			object obj)
 		{
 			if (obj == null || obj is SignerLocation)
@@ -87,15 +89,41 @@ namespace Org.BouncyCastle.Asn1.Esf
 			return new SignerLocation(Asn1Sequence.GetInstance(obj));
 		}
 
+        public DirectoryString Country
+        {
+            get { return countryName; }
+        }
+
+        public DirectoryString Locality
+        {
+            get { return localityName; }
+        }
+
+        public DirectoryString[] GetPostal()
+        {
+            if (postalAddress == null)
+                return null;
+
+            DirectoryString[] dirStrings = new DirectoryString[postalAddress.Count];
+            for (int i = 0; i != dirStrings.Length; i++)
+            {
+                dirStrings[i] = DirectoryString.GetInstance(postalAddress[i]);
+            }
+
+            return dirStrings;
+        }
+
+        [Obsolete("Use 'Country' property instead")]
 		public DerUtf8String CountryName
 		{
-			get { return countryName; }
+            get { return countryName == null ? null : new DerUtf8String(countryName.GetString()); }
 		}
 
-		public DerUtf8String LocalityName
-		{
-			get { return localityName; }
-		}
+        [Obsolete("Use 'Locality' property instead")]
+        public DerUtf8String LocalityName
+        {
+            get { return localityName == null ? null : new DerUtf8String(localityName.GetString()); }
+        }
 
 		public Asn1Sequence PostalAddress
 		{
diff --git a/crypto/src/asn1/x500/DirectoryString.cs b/crypto/src/asn1/x500/DirectoryString.cs
index d907c6456..6585fcdf5 100644
--- a/crypto/src/asn1/x500/DirectoryString.cs
+++ b/crypto/src/asn1/x500/DirectoryString.cs
@@ -9,15 +9,12 @@ namespace Org.BouncyCastle.Asn1.X500
 	{
 		private readonly DerStringBase str;
 
-		public static DirectoryString GetInstance(
-			object obj)
+		public static DirectoryString GetInstance(object obj)
 		{
-			if (obj is DirectoryString)
-			{
+			if (obj == null || obj is DirectoryString)
 				return (DirectoryString) obj;
-			}
 
-			if (obj is DerStringBase)
+            if (obj is DerStringBase)
 			{
 				if (obj is DerT61String
 					|| obj is DerPrintableString