summaryrefslogtreecommitdiff
path: root/chip/g/dcrypto/sha512.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/g/dcrypto/sha512.c')
-rw-r--r--chip/g/dcrypto/sha512.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/chip/g/dcrypto/sha512.c b/chip/g/dcrypto/sha512.c
deleted file mode 100644
index 1446970174..0000000000
--- a/chip/g/dcrypto/sha512.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* Copyright 2016 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "dcrypto.h"
-#include "internal.h"
-
-#include "cryptoc/sha512.h"
-
-void DCRYPTO_SHA512_init(LITE_SHA512_CTX *ctx)
-{
- SHA512_init(ctx);
-}
-
-const uint8_t *DCRYPTO_SHA512_hash(const void *data, uint32_t n,
- uint8_t *digest)
-{
- return SHA512_hash(data, n, digest);
-}