/* * This file is part of the flashrom project. * * Copyright (C) 2021, Google Inc. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #include #include "io_mock.h" static const struct io_mock *current_io = NULL; void io_mock_register(const struct io_mock *io) { /* A test can either register its own mock open function or fallback_open_state. */ assert_true(io == NULL || io->open == NULL || io->fallback_open_state == NULL); current_io = io; } const struct io_mock *get_io(void) { return current_io; } 'cgit logo'/> index : connectbot-yubikey/open-keychain
open-keychain with patches to support ssh authenticationJames
aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/keychain-api-library/src/org/openintents/openpgp/util/OpenPgpConstants.java
blob: 263b42aaa1d051f9da57c57296e7508ab2083eef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54