MySQL 9.0.0
Source Code Documentation
mysql_authentication_registration.h
Go to the documentation of this file.
1/* Copyright (c) 2021, 2024, Oracle and/or its affiliates.
2
3This program is free software; you can redistribute it and/or modify
4it under the terms of the GNU General Public License, version 2.0,
5as published by the Free Software Foundation.
6
7This program is designed to work with certain software (including
8but not limited to OpenSSL) that is licensed under separate terms,
9as designated in a particular file or component or in included license
10documentation. The authors of MySQL hereby grant you an additional
11permission to link the program and your derivative works with the
12separately licensed software that they have either included with
13the program or referenced in the documentation.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License, version 2.0, for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
22Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef MYSQL_AUTHENTICATION_REGISTRATION_H
25#define MYSQL_AUTHENTICATION_REGISTRATION_H
26
28
29/**
30 @ingroup group_components_services_inventory
31
32 A service to do registration of fido device.
33*/
34BEGIN_SERVICE_DEFINITION(mysql_authentication_registration)
35
36/**
37 This method performs initiate registration step.
38
39 @param[out] outbuf Buffer to hold challenge
40 @param[in] outbuflen Length of buffer
41
42 @return
43 @retval FALSE Succeeded.
44 @retval TRUE Failed.
45*/
46DECLARE_BOOL_METHOD(init, (unsigned char **outbuf, unsigned int outbuflen));
47
48/**
49 This method performs finish registration step.
50
51 @param [in] buf Buffer holding signed challenge
52 @param [in] buflen Length of signed challenge
53 @param [in] challenge Buffer to hold random challenge
54 @param [in] challenge_length Length of random challenge
55 @param [out] challenge_response Buffer to hold challenge response
56 @param [out] challenge_response_length Length of challenge response
57
58 @return
59 @retval FALSE Succeeded.
60 @retval TRUE Failed.
61*/
62DECLARE_BOOL_METHOD(finish, (unsigned char *buf, unsigned int buflen,
63 const unsigned char *challenge,
64 unsigned int challenge_length,
65 unsigned char *challenge_response,
66 unsigned int *challenge_response_length));
67
68/**
69 This method calculates length of challenge required for server to allocate
70 buffer which needs to be passed to init() to extract challenge.
71
72 @param [out] outbuflen Buffer to hold length of challenge
73*/
74DECLARE_METHOD(void, get_challenge_length, (unsigned int *outbuflen));
75
76END_SERVICE_DEFINITION(mysql_authentication_registration)
77
78#endif /* MYSQL_AUTHENTICATION_REGISTRATION_H */
static mysql_service_status_t init()
Component initialization.
Definition: audit_api_message_emit.cc:571
Definition: buf0block_hint.cc:30
#define DECLARE_METHOD(retval, name, args)
Declares a method as a part of the Service definition.
Definition: service.h:103
#define END_SERVICE_DEFINITION(name)
A macro to end the last Service definition started with the BEGIN_SERVICE_DEFINITION macro.
Definition: service.h:91
#define BEGIN_SERVICE_DEFINITION(name)
Declares a new Service.
Definition: service.h:86
#define DECLARE_BOOL_METHOD(name, args)
Declares a method that returns bool as a part of the Service definition.
Definition: service.h:112