Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OAEPOptions (0.14 sec)

  1. src/crypto/rsa/rsa.go

    	xx, ok := x.(*PublicKey)
    	if !ok {
    		return false
    	}
    	return bigIntEqual(pub.N, xx.N) && pub.E == xx.E
    }
    
    // OAEPOptions is an interface for passing options to OAEP decryption using the
    // crypto.Decrypter interface.
    type OAEPOptions struct {
    	// Hash is the hash function that will be used when generating the mask.
    	Hash crypto.Hash
    
    	// MGFHash is the hash function used for MGF1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ErrDecryption", Var, 0},
    		{"ErrMessageTooLong", Var, 0},
    		{"ErrVerification", Var, 0},
    		{"GenerateKey", Func, 0},
    		{"GenerateMultiPrimeKey", Func, 0},
    		{"OAEPOptions", Type, 5},
    		{"OAEPOptions.Hash", Field, 5},
    		{"OAEPOptions.Label", Field, 5},
    		{"OAEPOptions.MGFHash", Field, 20},
    		{"PKCS1v15DecryptOptions", Type, 5},
    		{"PKCS1v15DecryptOptions.SessionKeyLen", Field, 5},
    		{"PSSOptions", Type, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top