azure-core
Loading...
Searching...
No Matches
environment.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <string>
7
8namespace Azure { namespace Core { namespace _internal {
9 class Environment final {
10 private:
11 Environment() = delete;
12 ~Environment() = delete;
13
14 public:
15 static std::string GetVariable(const char* name);
16 static void SetVariable(const char* name, const char* value);
17 };
18}}} // namespace Azure::Core::_internal
Compute the hash value for the input binary data, using SHA256, SHA384 and SHA512.
Definition azure_assert.hpp:57