Fix Centurion name.
[0ad.git] / libraries / source / spidermonkey / include-win32-debug / mozilla / Authenticode.h
blob182512da2ca3deccaf229f7cad867d082bfe9a94
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_Authenticode_h
8 #define mozilla_Authenticode_h
10 #include "mozilla/Maybe.h"
11 #include "mozilla/TypedEnumBits.h"
12 #include "mozilla/UniquePtr.h"
14 namespace mozilla {
16 enum class AuthenticodeFlags : uint32_t {
17 Default = 0,
18 SkipTrustVerification = 1,
21 MOZ_MAKE_ENUM_CLASS_BITWISE_OPERATORS(AuthenticodeFlags)
23 class Authenticode {
24 public:
25 virtual UniquePtr<wchar_t[]> GetBinaryOrgName(
26 const wchar_t* aFilePath,
27 AuthenticodeFlags aFlags = AuthenticodeFlags::Default) = 0;
30 } // namespace mozilla
32 #endif // mozilla_Authenticode_h