mirror of
https://github.com/ultravioletrs/cocos.git
synced 2026-06-23 04:10:25 +00:00
5c60bc2a48
* Added a feature which enables users to fetch IMA measurements and verify them * Added a feature which enables users to fetch IMA measurements and verify them * fixed lint error * fixed according to comments * fixed according to comments * fixed according to comments * fixed according to comments * final bug fix
21 lines
336 B
Go
21 lines
336 B
Go
// Copyright (c) Ultraviolet
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
package grpc
|
|
|
|
type algoRes struct{}
|
|
|
|
type dataRes struct{}
|
|
|
|
type resultRes struct {
|
|
File []byte `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
}
|
|
|
|
type attestationRes struct {
|
|
File []byte
|
|
}
|
|
|
|
type imaMeasurementsRes struct {
|
|
File []byte
|
|
PCR10 []byte
|
|
}
|