All Projects → plackemacher → secure_compare

plackemacher / secure_compare

Licence: MIT license
A secure compare for Elixir.

Programming Languages

elixir
2628 projects

Projects that are alternatives of or similar to secure compare

golangflow
GolangFlow.io Website
Stars: ✭ 37 (+117.65%)
Mutual labels:  package
packager
Laravel Package Skeleton Generator - https://youtu.be/kQRQWzDEbGk
Stars: ✭ 20 (+17.65%)
Mutual labels:  package
flutter web import js library
Import & use javascript libraries in your flutter web projects
Stars: ✭ 28 (+64.71%)
Mutual labels:  package
emacs-hacker-typer
A customizable implementation of http://hackertyper.com in emacs.
Stars: ✭ 21 (+23.53%)
Mutual labels:  package
toggler
Atom plugin - Toggle words and symbols
Stars: ✭ 21 (+23.53%)
Mutual labels:  package
eerie
The package manager for Io.
Stars: ✭ 22 (+29.41%)
Mutual labels:  package
FinMesh
A python package that brings together financial and economic data.
Stars: ✭ 20 (+17.65%)
Mutual labels:  package
Laravel-Tongue
🎉 Finally a subdomain localization that works how you want it to work. 🌐
Stars: ✭ 28 (+64.71%)
Mutual labels:  package
devliver
Your private self hosted composer repository with user management
Stars: ✭ 50 (+194.12%)
Mutual labels:  package
macpack
Makes a macOS binary redistributable by searching the dependency tree and copying/patching non-system libraries.
Stars: ✭ 20 (+17.65%)
Mutual labels:  package
parse it
A python library for parsing multiple types of config files, envvars & command line arguments that takes the headache out of setting app configurations.
Stars: ✭ 86 (+405.88%)
Mutual labels:  package
future.mapreduce
[EXPERIMENTAL] R package: future.mapreduce - Utility Functions for Future Map-Reduce API Packages
Stars: ✭ 12 (-29.41%)
Mutual labels:  package
Odapter
C# code generator for Oracle packages
Stars: ✭ 16 (-5.88%)
Mutual labels:  package
elm-generative
Making generative art in Elm
Stars: ✭ 23 (+35.29%)
Mutual labels:  package
listenv
R package: Environments Behaving As Lists
Stars: ✭ 20 (+17.65%)
Mutual labels:  package
meteor-graphql
Compiler plugin that supports GraphQL files in Meteor
Stars: ✭ 56 (+229.41%)
Mutual labels:  package
pfSense-pkg-WireGuard
This is a port of the original WireGuard UI bits as implemented by Netgate in pfSense 2.5.0 to a package suitable for rapid iteration and more frequent updating on future releases of pfSense.
Stars: ✭ 194 (+1041.18%)
Mutual labels:  package
atom-toolbar-almighty
Atom editor's missing toolbar
Stars: ✭ 21 (+23.53%)
Mutual labels:  package
Releases
A Swift package for resolving released versions from a Git repository
Stars: ✭ 46 (+170.59%)
Mutual labels:  package
laravel-repoman
Set a payment deadline for the customer
Stars: ✭ 14 (-17.65%)
Mutual labels:  package

SecureCompare for Elixir

hex.pm version Build Status

A simple constant-time comparison algorithm for Elixir based on the Devise.secure_compare method found here.

Installation

The package can be installed by adding secure_compare to your list of dependencies in mix.exs:

def deps do
  [{:secure_compare, "~> 0.1.0"}]
end

Usage

a = "123"
b = "456"

SecureCompare.compare(a, b) # => false
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].