2.0 KiB
QR Code Encoder
Reference used was ISO/IEC 18004, 1st Edition (2000)
This implementation is informed by my specific needs, i.e. to provide two-factor authentication for mobile phones running Google Authenticator.
- "Byte" mode only (don't need e.g. numeric mode or kanji mode).
- Encode only (no detection/decode).
- Basic supporting library functions provided (HOTP, PNG image functions) to allow full-cyle demo.
Demo
- Download repo and compile with
erl -make
- Install Google Authenticator App on your mobile:
- Run demo:
qrcode_demo:run().
- Open the generated
qrcode.png
file - Scan the qrcode into the phone.
- Ensure server clock is correct.
- The value of
qrcode_demo:totp()
should show the same passcode as the phone. - Handle PINs/logins for the second part of the "two factor" according to your application design.
NOTE: This documentation is rather basic as this was open-sourced by specific request!
How to use QR Code Encoder with Elixir
For now, the only way to compile qrcode is to start erlang, and compile all the files manually. ::
cd src
erl
# In the interpreter, type the following:
c(gf256)
c(qrcode_demo)
c(qrcode_mask)
c(qrcode_matrix)
c(base32)
c(bits)
c(qrcode_demo)
c(qrcode)
c(qrcode_reedsolomon)
Then, whenever you have this compiled, you should have access to the functions avaiable in elixir.
iex(1)> qrcode = :qrcode.encode(“bla”) {:qrcode, 1, :M, 29, <<0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 211, 248, 4, 16, 208, 64, 46, 152, ...>>} iex(2)> png = :qrcode_demo.simple_png_encode(qrcode) <<137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0, 232, 0, 0, 0, ...>> iex(3)> :file.write_file(“example.png”, png) :ok