mirror of
https://github.com/electron/electron.git
synced 2026-01-07 22:54:25 -05:00
16 lines
444 B
C++
16 lines
444 B
C++
// Copyright (c) 2025 Noah Gregory
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_COMMON_ASAR_INTEGRITY_DIGEST_H_
|
|
#define ELECTRON_SHELL_COMMON_ASAR_INTEGRITY_DIGEST_H_
|
|
|
|
#include <Foundation/Foundation.h>
|
|
namespace asar {
|
|
|
|
bool IsIntegrityDictionaryValid(NSDictionary* integrity_dict);
|
|
|
|
} // namespace asar
|
|
|
|
#endif // ELECTRON_SHELL_COMMON_ASAR_INTEGRITY_DIGEST_H_
|