https://github.com/exorift/rfid-s
A more secure version of RFID that establishes a handshake rather than one-sided authorization
https://github.com/exorift/rfid-s
arduino cpp radio rfid
Last synced: 2 months ago
JSON representation
A more secure version of RFID that establishes a handshake rather than one-sided authorization
- Host: GitHub
- URL: https://github.com/exorift/rfid-s
- Owner: exoRift
- License: agpl-3.0
- Created: 2020-03-06T21:30:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-18T13:07:01.000Z (almost 4 years ago)
- Last Synced: 2025-10-10T08:17:48.262Z (9 months ago)
- Topics: arduino, cpp, radio, rfid
- Language: C++
- Homepage:
- Size: 563 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

### RFID-S is to RFID what HTTPS is to HTTP— a more secure rendition of an existing protocol.
---
### RFID currently works by sending an authentication token over radio frequency. Unfortunately, this leaves that token vulnerable to being "skimmed" by malicious scanners.
> 
###
RFID-S, however, generates a one-time-use code using an encryption key where the scanner sends a random string of bytes to the client, both the client and scanner encrypt that string with the same token, and the client sends it back to the scanner to compare and authenticate. This is far more secure than RFID because no static code or encryption key is sent over RF to be stolen.
> 
###
Besides for classical RFID applications such as building-access ID cards, this method can also be applied to credit card checkout as a means of authorizing purchases.
> 
Necessary Materials for barebones operation
---
## Scanner:
- Microprocessor
- EEPROM
- RF transmitter
- RF receiver
- Induction emission coil (to power the card/client)
## Card/Client:
- Microprocessor
- RF transmitter
- RF receiver
- EEPROM
- Induction reception coil
Pins
---
- RX: 11
- TX: 12
---
##### *RFID-S Is originally written in Arduino but is a general concept that can be applied to any lanuage and use-case*