Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
c1ded373f365b8ed2238f70d6885fabf39e9cd88
/
.
/
aos
/
sha256.h
blob: 7fb9b2f962e3ff7a196a928a4399bb4962a96d8b [
file
] [
log
] [
blame
]
#ifndef
AOS_SHA256_H_
#define
AOS_SHA256_H_
#include
<string>
#include
"absl/types/span.h"
namespace
aos
{
// Returns the sha256 of a span.
std
::
string
Sha256
(
const
absl
::
Span
<
const
uint8_t
>
str
);
}
// namespace aos
#endif
// AOS_SHA256_H_