Skip to content

SafetyNet Attestation API response parser for golang

License

Notifications You must be signed in to change notification settings

okzk/attestation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

attestation

A SafetyNet Attestation API response parser for golang.

Install

go get github.com/okzk/attestation

How to use

package main

import (
	"fmt"
	"github.com/okzk/attestation"
)

func main() {
	jws := "....."
	claims, err := attestation.Parse(jws)
	if err != nil {
		panic(err)
	}
	fmt.Println(claims)
}

License

MIT

About

SafetyNet Attestation API response parser for golang

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages