blob: d784dce4cadd723841c2924f3fa98d687ea33974 [file] [log] [blame]
The Android Open Source Project23580ca2008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _RECOVERY_VERIFIER_H
18#define _RECOVERY_VERIFIER_H
19
20#include "minzip/Zip.h"
21#include "mincrypt/rsa.h"
22
23/*
24 * Check the digital signature (as applied by jarsigner) on a Zip archive.
25 * Every file in the archive must be signed by one of the supplied RSA keys.
26 */
27bool verify_jar_signature(const ZipArchive *pArchive,
28 const RSAPublicKey *pKeys, int numKeys);
29
30#endif /* _RECOVERY_VERIFIER_H */