main.c 603 B

1234567891011121314151617181920212223242526272829303132
  1. /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
  2. * Use of this source code is governed by a BSD-style license that can be
  3. * found in the LICENSE file.
  4. */
  5. /*
  6. * This tests for the presence of functions used by vboot_reference utilities.
  7. */
  8. #include <stdio.h>
  9. #include "host_common.h"
  10. #include "file_keys.h"
  11. #include "signature_digest.h"
  12. int main(void)
  13. {
  14. /* host_misc.h */
  15. ReadFile(0, 0);
  16. WriteFile(0, 0, 0);
  17. /* file_keys.h */
  18. DigestFile(0, 0, 0, 0);
  19. /* signature_digest.h */
  20. PrependDigestInfo(0, 0);
  21. SignatureDigest(0, 0, 0);
  22. SignatureBuf(0, 0, 0, 0);
  23. return 0;
  24. }