Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for feed_size (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go

    	Blocksize   uint32
    	Maxauthsize uint32
    	Ivsize      uint32
    }
    
    type CryptoReportComp struct {
    	Type [64]uint8
    }
    
    type CryptoReportRNG struct {
    	Type     [64]uint8
    	Seedsize uint32
    }
    
    type CryptoReportAKCipher struct {
    	Type [64]uint8
    }
    
    type CryptoReportKPP struct {
    	Type [64]uint8
    }
    
    type CryptoReportAcomp struct {
    	Type [64]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go

    	Geniv       [64]int8
    	Blocksize   uint32
    	Maxauthsize uint32
    	Ivsize      uint32
    }
    
    type CryptoReportComp struct {
    	Type [64]int8
    }
    
    type CryptoReportRNG struct {
    	Type     [64]int8
    	Seedsize uint32
    }
    
    type CryptoReportAKCipher struct {
    	Type [64]int8
    }
    
    type CryptoReportKPP struct {
    	Type [64]int8
    }
    
    type CryptoReportAcomp struct {
    	Type [64]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. src/crypto/internal/mlkem768/mlkem768.go

    	CiphertextSize       = k*encodingSize10 + encodingSize4
    	EncapsulationKeySize = encryptionKeySize
    	DecapsulationKeySize = decryptionKeySize + encryptionKeySize + 32 + 32
    	SharedKeySize        = 32
    	SeedSize             = 32 + 32
    )
    
    // A DecapsulationKey is the secret key used to decapsulate a shared key from a
    // ciphertext. It includes various precomputed values.
    type DecapsulationKey struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client.go

    		if curveID == x25519Kyber768Draft00 {
    			keyShareKeys.ecdhe, err = generateECDHEKey(config.rand(), X25519)
    			if err != nil {
    				return nil, nil, nil, err
    			}
    			seed := make([]byte, mlkem768.SeedSize)
    			if _, err := io.ReadFull(config.rand(), seed); err != nil {
    				return nil, nil, nil, err
    			}
    			keyShareKeys.kyber, err = mlkem768.NewKeyFromSeed(seed)
    			if err != nil {
    				return nil, nil, nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg crypto/ed25519, const PrivateKeySize ideal-int
    pkg crypto/ed25519, const PublicKeySize = 32
    pkg crypto/ed25519, const PublicKeySize ideal-int
    pkg crypto/ed25519, const SeedSize = 32
    pkg crypto/ed25519, const SeedSize ideal-int
    pkg crypto/ed25519, const SignatureSize = 64
    pkg crypto/ed25519, const SignatureSize ideal-int
    pkg crypto/ed25519, func GenerateKey(io.Reader) (PublicKey, PrivateKey, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Options.Context", Field, 20},
    		{"Options.Hash", Field, 20},
    		{"PrivateKey", Type, 13},
    		{"PrivateKeySize", Const, 13},
    		{"PublicKey", Type, 13},
    		{"PublicKeySize", Const, 13},
    		{"SeedSize", Const, 13},
    		{"Sign", Func, 13},
    		{"SignatureSize", Const, 13},
    		{"Verify", Func, 13},
    		{"VerifyWithOptions", Func, 20},
    	},
    	"crypto/elliptic": {
    		{"(*CurveParams).Add", Method, 0},
    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