Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cryptorand (0.21 sec)

  1. src/math/big/alias_test.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package big_test
    
    import (
    	cryptorand "crypto/rand"
    	"math/big"
    	"math/rand"
    	"reflect"
    	"testing"
    	"testing/quick"
    )
    
    func equal(z, x *big.Int) bool {
    	return z.Cmp(x) == 0
    }
    
    type bigInt struct {
    	*big.Int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
Back to top