Skip to content
Snippets Groups Projects
Commit 521fe344 authored by Thai Duong's avatar Thai Duong
Browse files

Fix a small typo in README.md

Change-Id: I746c4a6ce31a0997ba7fe5495673cce3cf9268c3
ORIGINAL_AUTHOR=Thai Duong <thaidn@google.com>

GitOrigin-RevId: 96f59160d45ca3aba9b23061ddf7df1aca862376
parent a0959084
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ You can accomplish common crypto operations such as data encryption, digital
signatures, etc. with only a few lines of code. For example, to encrypt a
piece of data using authenticated encryption you need only 3 lines of code:
``
```
// 1. Read a keyset from some storage system
KeysetHandle keysetHandle = KeysetHandle.newHandle(bytes);
......@@ -142,7 +142,7 @@ Aead aead = AeadFactory.getPrimitive(keysetHandle);
// 3. Use the primitive.
byte[] ciphertext = aead.encrypt(plaintext, associatedData);
``
```
### Composability
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment