java
45 lines · 7 steps
Authenticated encryption with AES-GCM in Java
A small helper that encrypts and decrypts strings using AES-GCM, packing the random IV alongside the ciphertext.
Explained by
highlit
1public final class AesGcmCipher {
2
3 private static final String TRANSFORMATION = "AES/GCM/NoPadding";
4 private static final int GCM_TAG_BITS = 128;
5 private static final int IV_LENGTH = 12;
6
7 private final SecretKey key;
8 private final SecureRandom random = new SecureRandom();
9
10 public AesGcmCipher(SecretKey key) {
11 this.key = key;
12 }
13
14 public String encrypt(String plaintext) throws GeneralSecurityException {
15 byte[] iv = new byte[IV_LENGTH];
16 random.nextBytes(iv);
17
18 Cipher cipher = Cipher.getInstance(TRANSFORMATION);
19 cipher.init(Cipher.ENCRYPT_MODE, key, new GCMParameterSpec(GCM_TAG_BITS, iv));
20 byte[] ciphertext = cipher.doFinal(plaintext.getBytes(StandardCharsets.UTF_8));
21
22 byte[] combined = ByteBuffer.allocate(iv.length + ciphertext.length)
23 .put(iv)
24 .put(ciphertext)
25 .array();
26 return Base64.getEncoder().encodeToString(combined);
27 }
28
29 public String decrypt(String encoded) throws GeneralSecurityException {
30 byte[] combined = Base64.getDecoder().decode(encoded);
31 if (combined.length <= IV_LENGTH) {
32 throw new IllegalArgumentException("Malformed ciphertext");
33 }
34
35 ByteBuffer buffer = ByteBuffer.wrap(combined);
36 byte[] iv = new byte[IV_LENGTH];
37 buffer.get(iv);
38 byte[] ciphertext = new byte[buffer.remaining()];
39 buffer.get(ciphertext);
40
41 Cipher cipher = Cipher.getInstance(TRANSFORMATION);
42 cipher.init(Cipher.DECRYPT_MODE, key, new GCMParameterSpec(GCM_TAG_BITS, iv));
43 return new String(cipher.doFinal(ciphertext), StandardCharsets.UTF_8);
44 }
45}
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1GCM needs a fresh random IV for every encryption, so a shared key stays secure across many messages.
- 2Prepending the IV to the ciphertext lets you decrypt later with no separate metadata to track.
- 3The 128-bit GCM tag provides integrity, so tampered ciphertext fails to decrypt instead of returning garbage.
Related explainers
java
public class SlidingLogRateLimiter { private final int maxRequests; private final long windowMillis;
How a sliding-log rate limiter works
rate-limiting
concurrency
sliding-window
Advanced
8 steps
java
public final class Slugifier { private static final Pattern NON_LATIN = Pattern.compile("[^\\w-]"); private static final Pattern WHITESPACE = Pattern.compile("[\\s]+");
Building a URL slugifier in Java
regex
unicode-normalization
string-processing
Intermediate
8 steps
java
@Repository public interface OrderRepository extends JpaRepository<Order, Long> { @Query("""
Keyset pagination with Spring Data JPA
pagination
cursor
jpa
Advanced
8 steps
java
public record FixedWidthField(String name, int start, int end) { public String extract(String line) { int from = Math.min(start, line.length());
Parsing fixed-width text in Java
records
parsing
streams
Intermediate
7 steps
java
@RestController @RequestMapping("/api/quotes") public class QuoteStreamController {
Streaming market quotes with Spring WebFlux
reactive-streams
backpressure
server-sent-events
Advanced
9 steps
java
@Controller public class BookController { private final BookService bookService;
Solving GraphQL N+1 with batch mapping in Spring
graphql
n+1-problem
batching
Intermediate
8 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/authenticated-encryption-with-aes-gcm-in-java-explained-java-918f/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.