1 /*
2  * Copyright 2015 The Chromium OS Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6 
7 #ifndef __TPM2_UNIQUE_FP_H_
8 #define __TPM2_UNIQUE_FP_H_
9 
10 LIB_EXPORT uint32_t
11 _plat__GetUnique(uint32_t which,   // authorities (0) or details
12                  uint32_t bSize,   // size of the buffer
13                  unsigned char *b  // output buffer
14                  );
15 
16 #endif  // __TPM2_UNIQUE_FP_H_
17