github.com/keybase/client/go@v0.0.0-20241007131713-f10651d043c8/kbcrypto/signature_prefix_devel.go (about)

     1  // Copyright 2018 Keybase, Inc. All rights reserved. Use of
     2  // this source code is governed by the included BSD license.
     3  
     4  //go:build !production
     5  // +build !production
     6  
     7  package kbcrypto
     8  
     9  const (
    10  	SignaturePrefixTesting SignaturePrefix = "Keybase-Testing-1"
    11  )
    12  
    13  func (p SignaturePrefix) IsWhitelistedTest() bool {
    14  	return p == SignaturePrefixTesting
    15  }