This library package is an extension of nimbus-jose-jwt library. It is compatible with version >=9.0,<=9.31 of nimbus-jose-jwt. It provides JWE based encrypters/decrypters and JWS based signers/verifiers for doing operations with cryptographic keys stores in AWS KMS. This library requires Java 8 or above.
In the current version following encryption and signing operations are supported:
- Symmetric encryption (AES based).
- Classes:
com.nimbusds.jose.aws.kms.crypto.KmsSymmetricEncrypter
andcom.nimbusds.jose.aws.kms.crypto.KmsSymmetricDecrypter
- Classes:
- Asymmetric or Symmetric encryption (RSA or ECDSA based for asymmetric keys and AES based for symmetric keys).
- Classes:
com.nimbusds.jose.aws.kms.crypto.KmsDefaultEncrypter
andcom.nimbusds.jose.aws.kms.crypto.KmsDefaultDecrypter
- Classes:
- Asymmetric signing (RSA or ECDSA based).
- Classes:
com.nimbusds.jose.aws.kms.crypto.KmsAsymmetricSigner
andcom.nimbusds.jose.aws.kms.crypto.KmsAsymmetricVerifier
- Classes:
Above classes should be used in the same way any encryption or signing class, which is directly provided by nimbus-jose-jwt, is used.
Note: For encryption using symmetric KMS keys, you can use either the KmsDefaultEncrypter
class or the
KmsSymmetricEncrypter
class (and similarly can use KmsDefaultDecrypter
or KmsSymmetricDecrypter
, for decryption).
The difference between these two classes is that KmsDefaultEncrypter
generates an in-memory CEK and sends it to KMS
for encryption using KMS's Encrypt API, while
KmsSymmetricEncrypter
uses KMS's
GenerateDataKey API to generate the CEK
and fetch its plaintext and encrypted versions.
final var jweEncrypter = new KmsSymmetricEncrypter(AWSKMSClientBuilder.defaultClient(), kid);
final var jweHeader = new JWEHeader.Builder(alg, enc).keyID(kid).build();
final var jweObject = new JWEObject(jweHeader, new Payload(payload));
jweObject.encrypt(jweEncrypter);
final var jwsSigner = new KmsAsymmetricSigner(
AWSKMSClientBuilder.defaultClient(),
kid,
MessageType.fromValue(messageType));
final var jwsHeader = new JWSHeader.Builder(alg)
.keyID(kid)
.customParam(MESSAGE_TYPE, messageType)
.build();
final var jwsObject = new JWSObject(jwsHeader, new Payload(payload));
jwsObject.sign(jwsSigner);
This library is available on Maven Central. Following are the installation details.
<dependency>
<groupId>software.amazon.lynx</groupId>
<artifactId>nimbus-jose-jwt_aws-kms-extension</artifactId>
<version>1.0.0</version>
</dependency>
repositories {
mavenCentral()
}
dependencies {
implementation "software.amazon.lynx:nimbus-jose-jwt_aws-kms-extension:1.0.0"
}
There are various scripts included in this package, which you can use to perform various encryption/signing operations.
You can find Gradle tasks and available options of these scripts in scripts.gradle
file.
See CONTRIBUTING for more information.
This project is licensed under the Apache-2.0 License.