Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pg/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'pg/src/main')
-rw-r--r--pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignature.java6
-rw-r--r--pg/src/main/j2me/org/bouncycastle/openpgp/PGPUtil.java10
-rw-r--r--pg/src/main/java/org/bouncycastle/openpgp/PGPUtil.java10
3 files changed, 13 insertions, 13 deletions
diff --git a/pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignature.java b/pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignature.java
index 7f20fdc9..e345167a 100644
--- a/pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignature.java
+++ b/pg/src/main/j2me/org/bouncycastle/openpgp/PGPSignature.java
@@ -6,7 +6,7 @@ import java.io.OutputStream;
import java.util.Date;
import org.bouncycastle.asn1.ASN1EncodableVector;
-import org.bouncycastle.asn1.DERInteger;
+import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.bcpg.BCPGInputStream;
import org.bouncycastle.bcpg.BCPGOutputStream;
@@ -463,8 +463,8 @@ public class PGPSignature
try
{
ASN1EncodableVector v = new ASN1EncodableVector();
- v.add(new DERInteger(sigValues[0].getValue()));
- v.add(new DERInteger(sigValues[1].getValue()));
+ v.add(new ASN1Integer(sigValues[0].getValue()));
+ v.add(new ASN1Integer(sigValues[1].getValue()));
signature = new DERSequence(v).getEncoded();
}
diff --git a/pg/src/main/j2me/org/bouncycastle/openpgp/PGPUtil.java b/pg/src/main/j2me/org/bouncycastle/openpgp/PGPUtil.java
index 2bae0cee..fc5dab65 100644
--- a/pg/src/main/j2me/org/bouncycastle/openpgp/PGPUtil.java
+++ b/pg/src/main/j2me/org/bouncycastle/openpgp/PGPUtil.java
@@ -5,7 +5,7 @@ import java.security.SecureRandom;
import org.bouncycastle.asn1.ASN1InputStream;
import org.bouncycastle.asn1.ASN1Sequence;
-import org.bouncycastle.asn1.DERInteger;
+import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.bcpg.HashAlgorithmTags;
import org.bouncycastle.bcpg.MPInteger;
import org.bouncycastle.bcpg.PublicKeyAlgorithmTags;
@@ -23,15 +23,15 @@ public class PGPUtil
{
ASN1InputStream aIn = new ASN1InputStream(encoding);
- DERInteger i1;
- DERInteger i2;
+ ASN1Integer i1;
+ ASN1Integer i2;
try
{
ASN1Sequence s = (ASN1Sequence)aIn.readObject();
- i1 = (DERInteger)s.getObjectAt(0);
- i2 = (DERInteger)s.getObjectAt(1);
+ i1 = (ASN1Integer)s.getObjectAt(0);
+ i2 = (ASN1Integer)s.getObjectAt(1);
}
catch (IOException e)
{
diff --git a/pg/src/main/java/org/bouncycastle/openpgp/PGPUtil.java b/pg/src/main/java/org/bouncycastle/openpgp/PGPUtil.java
index ecb3b778..e3e9c438 100644
--- a/pg/src/main/java/org/bouncycastle/openpgp/PGPUtil.java
+++ b/pg/src/main/java/org/bouncycastle/openpgp/PGPUtil.java
@@ -13,8 +13,8 @@ import java.security.Security;
import java.util.Date;
import org.bouncycastle.asn1.ASN1InputStream;
+import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Sequence;
-import org.bouncycastle.asn1.DERInteger;
import org.bouncycastle.bcpg.ArmoredInputStream;
import org.bouncycastle.bcpg.HashAlgorithmTags;
import org.bouncycastle.bcpg.MPInteger;
@@ -59,15 +59,15 @@ public class PGPUtil
{
ASN1InputStream aIn = new ASN1InputStream(encoding);
- DERInteger i1;
- DERInteger i2;
+ ASN1Integer i1;
+ ASN1Integer i2;
try
{
ASN1Sequence s = (ASN1Sequence)aIn.readObject();
- i1 = (DERInteger)s.getObjectAt(0);
- i2 = (DERInteger)s.getObjectAt(1);
+ i1 = (ASN1Integer)s.getObjectAt(0);
+ i2 = (ASN1Integer)s.getObjectAt(1);
}
catch (IOException e)
{