forked from quarkiverse/quarkus-cxf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop managing cryptacular and use the version 1.2.7 brought by WSS4J,
fix quarkiverse#1648
- Loading branch information
Showing
29 changed files
with
233 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/ASN1Object.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.bouncycastle.asn1; | ||
|
||
import org.bouncycastle.util.Encodable; | ||
|
||
public abstract class ASN1Object | ||
implements ASN1Encodable, Encodable { | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/ASN1Set.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.bouncycastle.asn1; | ||
|
||
public abstract class ASN1Set | ||
extends ASN1Primitive | ||
implements org.bouncycastle.util.Iterable<ASN1Encodable> { | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/pkcs/Attribute.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.bouncycastle.asn1.pkcs; | ||
|
||
import org.bouncycastle.asn1.ASN1Object; | ||
import org.bouncycastle.asn1.ASN1Primitive; | ||
|
||
public class Attribute | ||
extends ASN1Object { | ||
|
||
@Override | ||
public ASN1Primitive toASN1Primitive() { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
...ns/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/pkcs/CertificationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.bouncycastle.asn1.pkcs; | ||
|
||
import org.bouncycastle.asn1.ASN1Object; | ||
import org.bouncycastle.asn1.ASN1Primitive; | ||
|
||
public class CertificationRequest | ||
extends ASN1Object { | ||
|
||
@Override | ||
public ASN1Primitive toASN1Primitive() { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...s/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/pkcs/PKCSObjectIdentifiers.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.asn1.pkcs; | ||
|
||
public interface PKCSObjectIdentifiers { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/x500/X500NameStyle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.asn1.x500; | ||
|
||
public interface X500NameStyle { | ||
|
||
} |
8 changes: 8 additions & 0 deletions
8
...ecurity/bc-stub/src/main/java/org/bouncycastle/asn1/x500/style/AbstractX500NameStyle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.bouncycastle.asn1.x500.style; | ||
|
||
import org.bouncycastle.asn1.x500.X500NameStyle; | ||
|
||
public abstract class AbstractX500NameStyle | ||
implements X500NameStyle { | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
...ions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/x500/style/RFC4519Style.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.bouncycastle.asn1.x500.style; | ||
|
||
public class RFC4519Style | ||
extends AbstractX500NameStyle { | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
...nsions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/x509/BasicConstraints.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.bouncycastle.asn1.x509; | ||
|
||
import org.bouncycastle.asn1.ASN1Object; | ||
import org.bouncycastle.asn1.ASN1Primitive; | ||
|
||
public class BasicConstraints extends ASN1Object { | ||
|
||
@Override | ||
public ASN1Primitive toASN1Primitive() { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/x509/Extension.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.bouncycastle.asn1.x509; | ||
|
||
import org.bouncycastle.asn1.ASN1Object; | ||
import org.bouncycastle.asn1.ASN1Primitive; | ||
|
||
public class Extension extends ASN1Object { | ||
|
||
@Override | ||
public ASN1Primitive toASN1Primitive() { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/x509/KeyPurposeId.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.bouncycastle.asn1.x509; | ||
|
||
import org.bouncycastle.asn1.ASN1Object; | ||
import org.bouncycastle.asn1.ASN1Primitive; | ||
|
||
public class KeyPurposeId | ||
extends ASN1Object { | ||
|
||
@Override | ||
public ASN1Primitive toASN1Primitive() { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/x509/KeyUsage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.bouncycastle.asn1.x509; | ||
|
||
import org.bouncycastle.asn1.ASN1Object; | ||
import org.bouncycastle.asn1.ASN1Primitive; | ||
|
||
public class KeyUsage extends ASN1Object { | ||
|
||
@Override | ||
public ASN1Primitive toASN1Primitive() { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
...sions/ws-security/bc-stub/src/main/java/org/bouncycastle/asn1/x509/PolicyInformation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.bouncycastle.asn1.x509; | ||
|
||
import org.bouncycastle.asn1.ASN1Object; | ||
import org.bouncycastle.asn1.ASN1Primitive; | ||
|
||
public class PolicyInformation extends ASN1Object { | ||
|
||
@Override | ||
public ASN1Primitive toASN1Primitive() { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/cert/CertIOException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.bouncycastle.cert; | ||
|
||
import java.io.IOException; | ||
|
||
public class CertIOException extends IOException { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...ons/ws-security/bc-stub/src/main/java/org/bouncycastle/cert/X509v3CertificateBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.cert; | ||
|
||
public class X509v3CertificateBuilder { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...urity/bc-stub/src/main/java/org/bouncycastle/cert/jcajce/JcaX509CertificateConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.cert.jcajce; | ||
|
||
public class JcaX509CertificateConverter { | ||
|
||
} |
16 changes: 16 additions & 0 deletions
16
...urity/bc-stub/src/main/java/org/bouncycastle/cert/jcajce/JcaX509v3CertificateBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package org.bouncycastle.cert.jcajce; | ||
|
||
import java.math.BigInteger; | ||
import java.util.Date; | ||
|
||
import org.bouncycastle.asn1.x500.X500Name; | ||
import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo; | ||
|
||
public class JcaX509v3CertificateBuilder { | ||
public JcaX509v3CertificateBuilder(X500Name issuer, BigInteger serial, Date notBefore, Date notAfter, X500Name subject, | ||
SubjectPublicKeyInfo publicKey) { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
|
||
} |
8 changes: 8 additions & 0 deletions
8
...ws-security/bc-stub/src/main/java/org/bouncycastle/jce/provider/BouncyCastleProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.bouncycastle.jce.provider; | ||
|
||
public class BouncyCastleProvider { | ||
public BouncyCastleProvider() { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/operator/ContentSigner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.operator; | ||
|
||
public interface ContentSigner { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...s-security/bc-stub/src/main/java/org/bouncycastle/operator/OperatorCreationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.operator; | ||
|
||
public class OperatorCreationException extends OperatorException { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...nsions/ws-security/bc-stub/src/main/java/org/bouncycastle/operator/OperatorException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.operator; | ||
|
||
public class OperatorException extends Exception { | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
...urity/bc-stub/src/main/java/org/bouncycastle/operator/jcajce/JcaContentSignerBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.bouncycastle.operator.jcajce; | ||
|
||
public class JcaContentSignerBuilder { | ||
|
||
public JcaContentSignerBuilder(String signatureAlgorithm) { | ||
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from" | ||
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead"); | ||
|
||
} | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...s/ws-security/bc-stub/src/main/java/org/bouncycastle/pkcs/PKCS10CertificationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.pkcs; | ||
|
||
public class PKCS10CertificationRequest { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...curity/bc-stub/src/main/java/org/bouncycastle/pkcs/PKCS10CertificationRequestBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.pkcs; | ||
|
||
public class PKCS10CertificationRequestBuilder { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/util/Encodable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.bouncycastle.util; | ||
|
||
public interface Encodable { | ||
|
||
} |
6 changes: 6 additions & 0 deletions
6
extensions/ws-security/bc-stub/src/main/java/org/bouncycastle/util/Iterable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.bouncycastle.util; | ||
|
||
public interface Iterable<T> | ||
extends java.lang.Iterable<T> { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters