Skip to content
Snippets Groups Projects
Select Git revision
  • f71d2e2b543200adf843f18039036a5bafd3cab2
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

Message+stubs.swift

Blame
  • fingerprint.go 801 B
    ///////////////////////////////////////////////////////////////////////////////
    // Copyright © 2020 xx network SEZC                                          //
    //                                                                           //
    // Use of this source code is governed by a license that can be found in the //
    // LICENSE file                                                              //
    ///////////////////////////////////////////////////////////////////////////////
    
    package auth
    
    import "gitlab.com/elixxir/crypto/cyclic"
    
    type FingerprintType uint
    
    const (
    	General  FingerprintType = 1
    	Specific FingerprintType = 2
    )
    
    type fingerprint struct {
    	Type FingerprintType
    
    	// Only populated if it is general
    	PrivKey *cyclic.Int
    
    	// Only populated if it is specific
    	Request *request
    }