Giter VIP home page Giter VIP logo

erlfernet's Introduction

fernet for Erlang

Build Status

This is an Erlang implementation of the Fernet specification which

"takes a user-provided message (an arbitrary sequence of bytes), a key (256 bits), and the current time, and produces a token, which contains the message in a form that can't be read or altered without the key."

Interface

1> Key = fernet:generate_encoded_key().
<<"iXOktbuC7QYXM9aF_m49VAqdkZ6jQBMsqjYwEHTm5ps=">>

2> Token = fernet:generate_token("hello", Key).
<<"gAAAAABVguk6wOivag6ZN_76fP2EXltZGJ9yPLLXKg4aBR9ekbhVnYmkJOuqTGl_GlmNlg6Z_KDl2wb1duRV41CNbF931n4LgA==">>

3> fernet:verify_and_decrypt_token(Token, Key, infinity).
{ok,<<"hello">>}

4> TTL = 10. % seconds
10

5> fernet:verify_and_decrypt_token(Token, Key, TTL).
{error, too_old}

erlfernet's People

Contributors

bigkevmcd avatar ferd avatar jkakar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

erlfernet's Issues

Is the TTL intended to be checked in seconds or microseconds?

https://github.com/bigkevmcd/erlfernet/blob/master/src/fernet.erl#L124

This code right there runs timer:now_diff/2 which compares two timestamps and returns the difference in terms of µs. However, everything else works in seconds. Am I right in thinking this is a bug on the TTL check that should be fixed? There's one test that fails if we turn this to seconds, but works otherwise.

If I'm right, I'll try to submit a patch soonish as I started looking back into this with 18.0+ support (with better time functions)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.