Flutter ffi library for argon2 implementation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
566 B

#import "Argon2FfiPlugin.h"
#if __has_include(<argon2_ffi/argon2_ffi-Swift.h>)
#import <argon2_ffi/argon2_ffi-Swift.h>
#else
// Support project import fallback if the generated compatibility header
// is not copied when this plugin is created as a library.
// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
#import "argon2_ffi-Swift.h"
#endif
@implementation Argon2FfiPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
[SwiftArgon2FfiPlugin registerWithRegistrar:registrar];
}
@end