// Copyright 2019 SoloKeys Developers // // Licensed under the Apache License, Version 2.0, or the MIT license , at your option. This file may not be // copied, modified, or distributed except according to those terms. #ifndef EXTENSIONS_H_ #define EXTENSIONS_H_ #include "u2f.h" #include "apdu.h" int16_t extend_u2f(APDU_HEADER * req, uint8_t * payload, uint32_t len); int16_t extend_fido2(CredentialId * credid, uint8_t * output); int bootloader_bridge(int klen, uint8_t * keyh); int is_extension_request(uint8_t * kh, int len); #endif /* EXTENSIONS_H_ */