-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support BouncyCastle ECDSA KeyPairGenerator and AES/CBC/PKCS7Padding …
…Cipher
- Loading branch information
1 parent
9636db6
commit c0dc625
Showing
7 changed files
with
111 additions
and
4 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
...yment/src/main/java/io/quarkus/deployment/builditem/nativeimage/AutoFeatureAugmentor.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 io.quarkus.deployment.builditem.nativeimage; | ||
|
||
import io.quarkus.gizmo.TryBlock; | ||
|
||
public interface AutoFeatureAugmentor { | ||
void augment(TryBlock overallCatch); | ||
} |
19 changes: 19 additions & 0 deletions
19
...io/quarkus/deployment/builditem/nativeimage/NativeImageAutoFeatureAugmentorBuildItem.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,19 @@ | ||
package io.quarkus.deployment.builditem.nativeimage; | ||
|
||
import io.quarkus.builder.item.MultiBuildItem; | ||
import io.quarkus.gizmo.TryBlock; | ||
|
||
/** | ||
* A build item that can be used to augment the generated AutoFeature | ||
*/ | ||
public final class NativeImageAutoFeatureAugmentorBuildItem extends MultiBuildItem { | ||
AutoFeatureAugmentor autoFeatureAugmentor; | ||
|
||
public NativeImageAutoFeatureAugmentorBuildItem(AutoFeatureAugmentor autoFeatureAugmentor) { | ||
this.autoFeatureAugmentor = autoFeatureAugmentor; | ||
} | ||
|
||
public void augment(TryBlock overallCatch) { | ||
autoFeatureAugmentor.augment(overallCatch); | ||
} | ||
} |
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
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
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
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
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