File: const.pure.go

package info (click to toggle)
golang-github-go-crypt-crypt 0.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 516 kB
  • sloc: makefile: 4
file content (12 lines) | stat: -rw-r--r-- 156 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
//go:build !amd64 || purego

package scrypt

import (
	"math"
)

const (
	// KeyLengthMax is the maximum key size accepted.
	KeyLengthMax = math.MaxInt32
)