#ifndef IOS_CHROME_CREDENTIAL_PROVIDER_EXTENSION_PASSKEY_REQUEST_DETAILS_TESTING_H_
#define IOS_CHROME_CREDENTIAL_PROVIDER_EXTENSION_PASSKEY_REQUEST_DETAILS_TESTING_H_
#import <AuthenticationServices/AuthenticationServices.h>
#import "ios/chrome/credential_provider_extension/passkey_request_details.h"
@interface PasskeyRequestDetails (Testing)
+ (BOOL)isLargeBlobSupportRequestedFromRegistrationInput:
(ASPasskeyRegistrationCredentialExtensionInput*)registrationInput
API_AVAILABLE(ios(18.0));
- (instancetype)initWithURL:(NSString*)url
username:(NSString*)username
excludedCredentials:(NSArray<NSData*>*)excludedCredentials;
@end
#endif