summaryrefslogtreecommitdiffstats
path: root/update_verifier/include/update_verifier/update_verifier.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-04-27 23:41:28 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-04-27 23:41:28 +0200
commit598679cbad4fa92767b266342b7ee5f54780f6d0 (patch)
tree137605d76f1bfa94f8a57f3478e1c460c320f9cc /update_verifier/include/update_verifier/update_verifier.h
parentMerge "libfusesideload: Clean up the CFLAGS for the module." am: 416c55cf43 am: 74812187c0 am: 67dc335646 (diff)
parentMerge "Separate libupdate_verifier module and add testcases." am: c99bb23955 am: d8c078d2c6 (diff)
downloadandroid_bootable_recovery-598679cbad4fa92767b266342b7ee5f54780f6d0.tar
android_bootable_recovery-598679cbad4fa92767b266342b7ee5f54780f6d0.tar.gz
android_bootable_recovery-598679cbad4fa92767b266342b7ee5f54780f6d0.tar.bz2
android_bootable_recovery-598679cbad4fa92767b266342b7ee5f54780f6d0.tar.lz
android_bootable_recovery-598679cbad4fa92767b266342b7ee5f54780f6d0.tar.xz
android_bootable_recovery-598679cbad4fa92767b266342b7ee5f54780f6d0.tar.zst
android_bootable_recovery-598679cbad4fa92767b266342b7ee5f54780f6d0.zip
Diffstat (limited to 'update_verifier/include/update_verifier/update_verifier.h')
-rw-r--r--update_verifier/include/update_verifier/update_verifier.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/update_verifier/include/update_verifier/update_verifier.h b/update_verifier/include/update_verifier/update_verifier.h
new file mode 100644
index 000000000..16b394e98
--- /dev/null
+++ b/update_verifier/include/update_verifier/update_verifier.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#pragma once
+
+#include <string>
+
+int update_verifier(int argc, char** argv);
+
+// Exposed for testing purpose.
+bool verify_image(const std::string& care_map_name);