Skip to content

Commit

Permalink
Update README.md (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocomes authored Jan 8, 2024
1 parent f7046f7 commit 144e2aa
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
# powershell_utility
# powershell_utility
```powershell
$headers = [ordered]@{
"alg"="HS256"
"typ"="JWT"
}
$payload = [ordered]@{
"sub" = "23232323"
"name" = "Onofrio Comes"
"iat" = 1516239022
}
$secret = "secret_key"
$jwt = Create-JWT -headers $headers -payload $payload -secret $secret
```

0 comments on commit 144e2aa

Please sign in to comment.