Created
November 1, 2019 16:28
-
-
Save gitfvb/5a549572b2e3f596f41c996cbdde60fb to your computer and use it in GitHub Desktop.
create a standard jwt token in PowerShell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
based on this example from: https://jwt.io/ | |
https://stackoverflow.com/questions/30246497/using-statement-for-base64urlencode | |
https://medium.com/@nikitafed9292/net-base64-decoding-workaround-82b797162b6e | |
https://blog.angular-university.io/angular-jwt/ | |
https://gist.github.com/kucukkanat/1ef77db8120323db2b89087735ef8a5d | |
#> | |
################################################ | |
# | |
# DEBUG | |
# | |
################################################ | |
$headers = [ordered]@{ | |
"alg"="HS256" | |
"typ"="JWT" | |
} | |
$payload = [ordered]@{ | |
"sub" = "1234567890" | |
"name" = "John Doe" | |
"iat" = 1516239022 | |
} | |
$secret = "secret" #"GQDstcKsx0NHjPOuXOYg5MbeJ1XT0uFiwDVvVBrk" | |
Add-Type -AssemblyName System.Security | |
################################################ | |
# | |
# FUNCTIONS | |
# | |
################################################ | |
# inspired by https://gallery.technet.microsoft.com/scriptcenter/Get-StringHash-aa843f71 | |
Function Get-HMACSHA512 { | |
param( | |
[Parameter(Mandatory=$true)][String]$data | |
,[Parameter(Mandatory=$true)][String]$key | |
) | |
$hmacsha = New-Object System.Security.Cryptography.HMACSHA256 | |
$hmacsha.key = [Text.Encoding]::UTF8.GetBytes($key) | |
$bytesToSign = [Text.Encoding]::UTF8.GetBytes($data) | |
$sign = $hmacsha.ComputeHash($bytesToSign) | |
return $sign | |
} | |
Function Get-StringFromByte { | |
param( | |
[Parameter(Mandatory=$true)][byte[]]$byteArray | |
) | |
$stringBuilder = "" | |
$byteArray | ForEach { $stringBuilder += $_.ToString("x2") } | |
return $stringBuilder | |
} | |
Function Get-Base64UrlEncodeFromString { | |
param( | |
[Parameter(Mandatory=$true)][String]$inputString | |
) | |
$inputBytes = [Text.Encoding]::UTF8.GetBytes($inputString) | |
# Special "url-safe" base64 encode. | |
$base64 = [System.Convert]::ToBase64String($inputBytes,[Base64FormattingOptions]::None).Replace('+', '-').Replace('/', '_').Replace("=", "") | |
return $base64 | |
} | |
Function Get-Base64UrlEncodeFromByteArray { | |
param( | |
[Parameter(Mandatory=$true)][byte[]]$byteArray | |
) | |
# Special "url-safe" base64 encode. | |
$base64 = [System.Convert]::ToBase64String($byteArray,[Base64FormattingOptions]::None).Replace('+', '-').Replace('/', '_').Replace("=", "") | |
return $base64 | |
} | |
Function Get-Base64FromString { | |
param( | |
[Parameter(Mandatory=$true)][String]$inputString | |
) | |
$inputBytes = [Text.Encoding]::UTF8.GetBytes($inputString) | |
# Special "url-safe" base64 encode. | |
$base64 = [System.Convert]::ToBase64String($inputBytes,[Base64FormattingOptions]::None) | |
return $base64 | |
} | |
Function Get-Base64FromByteArray { | |
param( | |
[Parameter(Mandatory=$true)][byte[]]$byteArray | |
) | |
$base64 = [System.Convert]::ToBase64String($byteArray,[Base64FormattingOptions]::None) | |
return $base64 | |
} | |
# Add missing "=" at the end and check url-safe encodings | |
Function Check-Base64 { | |
param( | |
[Parameter(Mandatory=$true)][String]$inputString | |
) | |
#$input | |
$encoded = $inputString.Replace('-','+').Replace('_','/') | |
$d = $encoded.Length % 4 | |
if ( $d -ne 0 ) { | |
$encoded = $encoded.TrimEnd('=') | |
if ( $d % 2 -gt 0 ) { | |
$encoded += '=' | |
} else { | |
$encoded += '==' | |
} | |
} | |
return $encoded | |
} | |
Function Create-JWT { | |
param( | |
[Parameter(Mandatory=$true)][System.Collections.Specialized.OrderedDictionary]$headers | |
,[Parameter(Mandatory=$true)][System.Collections.Specialized.OrderedDictionary]$payload | |
,[Parameter(Mandatory=$true)][string]$secret | |
) | |
$headersJson = $headers | ConvertTo-Json -Compress | |
$payloadJson = $payload | ConvertTo-Json -Compress | |
$headersEncoded = Get-Base64UrlEncodeFromString -inputString $headersJson #[System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($headersJson),[Base64FormattingOptions]::None) | |
$payloadEncoded = Get-Base64UrlEncodeFromString -inputString $payloadJson #[System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($payloadJson),[Base64FormattingOptions]::None) | |
$content = "$( $headersEncoded ).$( $payloadEncoded )" | |
$signatureByte = Get-HMACSHA512 -data $content -key $secret | |
$signature = Get-Base64UrlEncodeFromByteArray -byteArray $signatureByte | |
$jwt = "$( $headersEncoded ).$( $payloadEncoded ).$( $signature )" | |
return $jwt | |
} | |
################################################ | |
# | |
# TEST | |
# | |
################################################ | |
# creation of jwt | |
$jwt = Create-JWT -headers $headers -payload $payload -secret $secret | |
$jwt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I need to generate a private and public key.