Skip to content

The same Argon2 lib without the malloc security warnings fired by tools like MobSF, AppSweep and others.

License

Notifications You must be signed in to change notification settings

charlykno64/Argon2-calloc

 
 

Repository files navigation

Argon2 Library

Wrapper around the reference C implementation of Argon2.

iOS Usage

Add the following line to your Podfile:

pod 'SignalArgon2CAlloc'

Install the pod with the a terminal at the same path as your Podfile:

pod install

Use it:

let (rawHash, encodedHash) = Argon2.hash(
    iterations: 1,
    memoryInKiB: 32 * 1024,
    threads: 1,
    password: password,
    salt: salt,
    desiredLength: 32,
    variant: .id,
    version: .v13
)

About

The same Argon2 lib without the malloc security warnings fired by tools like MobSF, AppSweep and others.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 47.5%
  • Swift 40.6%
  • C 6.9%
  • Ruby 3.7%
  • Makefile 1.3%