blob: b718b428f2d92e2576b13509e365556de38bd6ff [file] [log] [blame]
Benoit Gobyd5fcafa2012-04-12 12:23:49 -07001/*
2 * Copyright (C) 2012 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 __ADB_AUTH_H
18#define __ADB_AUTH_H
19
Dan Albert818fb4b2015-02-18 00:18:25 -080020#ifdef __cplusplus
21extern "C" {
22#endif
23
Benoit Gobyd5fcafa2012-04-12 12:23:49 -070024void adb_auth_init(void);
Nick Kralevichbea3f9c2014-11-13 15:17:29 -080025int adb_auth_keygen(const char* filename);
Benoit Gobyd5fcafa2012-04-12 12:23:49 -070026void adb_auth_verified(atransport *t);
27
Benoit Goby045a4a92013-01-15 19:59:14 -080028void send_auth_request(atransport *t);
29
Benoit Gobyd5fcafa2012-04-12 12:23:49 -070030/* AUTH packets first argument */
31/* Request */
32#define ADB_AUTH_TOKEN 1
33/* Response */
34#define ADB_AUTH_SIGNATURE 2
35#define ADB_AUTH_RSAPUBLICKEY 3
36
37#if ADB_HOST
38
39int adb_auth_sign(void *key, void *token, size_t token_size, void *sig);
40void *adb_auth_nextkey(void *current);
41int adb_auth_get_userkey(unsigned char *data, size_t len);
42
43static inline int adb_auth_generate_token(void *token, size_t token_size) { return 0; }
44static inline int adb_auth_verify(void *token, void *sig, int siglen) { return 0; }
45static inline void adb_auth_confirm_key(unsigned char *data, size_t len, atransport *t) { }
Benoit Gobyd5fcafa2012-04-12 12:23:49 -070046
47#else // !ADB_HOST
48
49static inline int adb_auth_sign(void* key, void *token, size_t token_size, void *sig) { return 0; }
50static inline void *adb_auth_nextkey(void *current) { return NULL; }
51static inline int adb_auth_get_userkey(unsigned char *data, size_t len) { return 0; }
52
53int adb_auth_generate_token(void *token, size_t token_size);
54int adb_auth_verify(void *token, void *sig, int siglen);
55void adb_auth_confirm_key(unsigned char *data, size_t len, atransport *t);
Benoit Gobyd5fcafa2012-04-12 12:23:49 -070056
57#endif // ADB_HOST
58
Dan Albert818fb4b2015-02-18 00:18:25 -080059#ifdef __cplusplus
60}
61#endif
62
Benoit Gobyd5fcafa2012-04-12 12:23:49 -070063#endif // __ADB_AUTH_H