bcrypt_pbkdf

package
v0.23.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 7, 2022 License: Apache-2.0, BSD-2-Clause Imports: 3 Imported by: 0

README

Go implementation of bcrypt_pbkdf(3) from OpenBSD
(a variant of PBKDF2 with bcrypt-based PRF).


USAGE

  func Key(password, salt []byte, rounds, keyLen int) ([]byte, error)

  
  Key derives a key from the password, salt and rounds count, returning a
  []byte of length keyLen that can be used as cryptographic key.
  
  Remember to get a good random salt of at least 16 bytes.  Using a higher
  rounds count will increase the cost of an exhaustive search but will also
  make derivation proportionally slower.


REFERENCES

* https://github.com/dchest/bcrypt_pbkdf
* http://www.tedunangst.com/flak/post/bcrypt-pbkdf
* http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/lib/libutil/bcrypt_pbkdf.c

Documentation

Overview

Package bcrypt_pbkdf implements password-based key derivation function based on bcrypt compatible with bcrypt_pbkdf(3) from OpenBSD.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Key

func Key(password, salt []byte, rounds, keyLen int) ([]byte, error)

Key derives a key from the password, salt and rounds count, returning a []byte of length keyLen that can be used as cryptographic key.

Remember to get a good random salt of at least 16 bytes. Using a higher rounds count will increase the cost of an exhaustive search but will also make derivation proportionally slower.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL