All Projects → ddssingsong → GestureLock

ddssingsong / GestureLock

Licence: other
手势解锁 指纹解锁,兼容绝大数手机

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to GestureLock

Supercookie
💭 Inspiration
Stars: ✭ 3,630 (+3978.65%)
Mutual labels:  fingerprint
Vytal
Browser extension to spoof timezone, geolocation, locale and user agent.
Stars: ✭ 1,449 (+1528.09%)
Mutual labels:  fingerprint
Fingerprint-Enhancement-Python
Using oriented gabor filters to enhance fingerprint images
Stars: ✭ 157 (+76.4%)
Mutual labels:  fingerprint
Fingerprint
Android library that simplifies the process of fingerprint authentications.
Stars: ✭ 68 (-23.6%)
Mutual labels:  fingerprint
CycleTLS
Spoof TLS/JA3 fingerprints in GO and Javascript
Stars: ✭ 362 (+306.74%)
Mutual labels:  fingerprint
one-scan
多合一网站指纹扫描器,轻松获取网站的 IP / DNS 服务商 / 子域名 / HTTPS 证书 / WHOIS / 开发框架 / WAF 等信息
Stars: ✭ 44 (-50.56%)
Mutual labels:  fingerprint
Wafw00f
WAFW00F allows one to identify and fingerprint Web Application Firewall (WAF) products protecting a website.
Stars: ✭ 2,983 (+3251.69%)
Mutual labels:  fingerprint
fingerprint denoising
U-Net for fingerprint denoising
Stars: ✭ 19 (-78.65%)
Mutual labels:  fingerprint
bidd-molmap
MolMap: An Efficient Convolutional Neural Network Based Molecular Deep Learning Tool
Stars: ✭ 102 (+14.61%)
Mutual labels:  fingerprint
keras-neural-graph-fingerprint
Keras implementation of Neural Graph Fingerprints as proposed by Duvenaud et al., 2015
Stars: ✭ 47 (-47.19%)
Mutual labels:  fingerprint
fingerprintjs-pro-ios
Official iOS/tvOS agent & SDK for accurate device identification, created for the Fingerprint Pro identification API.
Stars: ✭ 35 (-60.67%)
Mutual labels:  fingerprint
duff
Pure OCaml implementation of libXdiff (Rabin's fingerprint)
Stars: ✭ 20 (-77.53%)
Mutual labels:  fingerprint
BitFact
🛡️ Robust data integrity tool. Prove data, text, & files using the Ethereum blockchain.
Stars: ✭ 42 (-52.81%)
Mutual labels:  fingerprint
Cordova Plugin Fingerprint Aio
👆 📱 Cordova Plugin for fingerprint sensors (and FaceID) with Android and iOS support
Stars: ✭ 236 (+165.17%)
Mutual labels:  fingerprint
deduplicator
Lightroom plug-in to deduplicate images based on perceptual hash algorithms
Stars: ✭ 48 (-46.07%)
Mutual labels:  fingerprint
Cmsprint
CMS和中间件指纹库
Stars: ✭ 232 (+160.67%)
Mutual labels:  fingerprint
blog-nojs-fingerprint-demo
A demo for the no-JavaScript fingerprinting article
Stars: ✭ 443 (+397.75%)
Mutual labels:  fingerprint
mpvue-gesture-lock
微信小程序手势解锁(Dom实现,避免小程序Canvas卡顿问题),基于 Mpvue
Stars: ✭ 34 (-61.8%)
Mutual labels:  gesture-lock
SSBiometricsAuthentication
Biometric factors allow for secure authentication on the Android platform.
Stars: ✭ 87 (-2.25%)
Mutual labels:  fingerprint
e3fp
3D molecular fingerprints
Stars: ✭ 93 (+4.49%)
Mutual labels:  fingerprint

GestureLock

手势解锁 指纹解锁,兼容绝大数手机

手势解锁功能预览

  • 设置手势密码

  • 修改手势密码

  • 验证手势密码

  • 选中震动效果

  • 顶部预览效果

  • 可自定义密码存储位置(sp,db)

  • 可设置访客密码,默认数组[0]为超级密码,数组[1]为访客密码

功能预览

  1. 设置手势密码

功能预览

  1. 验证手势密码

功能预览

指纹解锁预览

指纹解锁

定制开发

  1. 自定义密码存储,实现下面接口内容
/**
* 密码逻辑接口
* Created by dds on 2019/2/13.
* [email protected]
*/
public interface ICache {

   // 判断是否设置了手势密码
   boolean isGestureCodeSet(Context context);
   // 获取手势密码
   String getGestureCodeSet(Context context);
   
   String getGuestGestureCodeSet(Context context);
   // 清空手势密码
   void clearGestureCode(Context context);
   // 设置手势密码
   void setGestureCode(Context context, String gestureCode);
  
   void setGuestGestureCode(Context context, String gestureCode);

}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].