/* * Copyright 2020 Contributors to the Parsec project. * SPDX-License-Identifier: Apache-2.0 */ syntax = "proto3"; package psa_mac_verify; import "psa_algorithm.proto"; message Operation { string key_name = 1; psa_algorithm.Algorithm.Mac alg = 2; bytes input = 3; bytes mac = 4; } message Result {}