mirror of
https://github.com/google/go-attestation.git
synced 2024-12-18 20:47:57 +00:00
bbc1a84749
Add a trivial remote attestation client and server based on Bluetooth low energy. This is a PoC rather than production-ready code and has multiple rough edges, but demonstrates that remote attestation can be performed over a local network rather than requiring an internet connection and remote server.
15 lines
525 B
Modula-2
15 lines
525 B
Modula-2
module github.com/google/go-attestation
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/go-ble/ble v0.0.0-20200407180624-067514cd6e24
|
|
github.com/google/certificate-transparency-go v1.0.22-0.20190605205155-41fc2ef3a2a8
|
|
github.com/google/go-cmp v0.3.1
|
|
github.com/google/go-tpm v0.2.1-0.20191015210219-431489f43254
|
|
github.com/google/go-tpm-tools v0.1.1
|
|
github.com/google/go-tspi v0.2.1-0.20190423175329-115dea689aad
|
|
golang.org/x/crypto v0.0.0-20190911031432-227b76d455e7 // indirect
|
|
golang.org/x/sys v0.0.0-20191126131656-8a8471f7e56d
|
|
)
|