Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
Fix typo in java JWT example.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 425396441
  • Loading branch information
juergw authored and copybara-github committed Jan 31, 2022
1 parent 2579548 commit f845878
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/java_src/jwt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The key material was generated with:

```shell
$ tinkey create-keyset --key-template JWT_ES256 --out-format JSON \
--out jwt_test_private_keyset.json
--out jwt_signature_test_private_keyset.json
```

## Build and Run
Expand All @@ -24,10 +24,10 @@ $ bazel build ...
$ touch token.txt

$ ./bazel-bin/jwt/jwt_sign \
./jwt/jwt_test_private_keyset.json example_audience token.txt
./jwt/jwt_signature_test_private_keyset.json example_audience token.txt

$ ./bazel-bin/jwt/jwt_generate_public_jwk_set \
./jwt/jwt_test_private_keyset.json public_jwk_set.json
./jwt/jwt_signature_test_private_keyset.json public_jwk_set.json

$ ./bazel-bin/jwt/jwt_verify \
public_jwk_set.json example_audience token.txt
Expand Down

0 comments on commit f845878

Please sign in to comment.