Categorygithub.com/Aoang/firebase-scrypt
modulepackage
1.1.0
Repository: https://github.com/aoang/firebase-scrypt.git
Documentation: pkg.go.dev

# README

Firebase scrypt

GoDoc Go Report Card Release MIT license

This is the golang implementation of the modified Scrypt algorithm used by Firebase Auth.

Sample

package main

import scrypt "github.com/Aoang/firebase-scrypt"

func main(){
	app, _ :=scrypt.New(
		"YE0dO4bwD4JnJafh6lZZfkp1MtKzuKAXQcDCJNJNyeCHairWHKENOkbh3dzwaCdizzOspwr/FITUVlnOAwPKyw==",
		"Bw==",
		8,
		14,
	)
	app.FirebaseVerify(
		"8x4WjoDbSxJZdR",
		"sPtDhWcd1MfdAw==",
		"xbSou7FOl6mChCyzpCPIQ7tku7nsQMTFtyOZSXXd7tjBa4NtimOx7v42Gv2SfzPQu1oxM2/k4SsbOu73wlKe1A==",
	)
}

# Functions

No description provided by the author
No description provided by the author

# Constants

No description provided by the author
No description provided by the author

# Structs

No description provided by the author