Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Encrypt_key (0.1 sec)

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

    	Device           uint32
    	Inode            uint64
    	Rdevice          uint32
    	Offset           int32
    	Encrypt_type     int32
    	Encrypt_key_size int32
    	Flags            int32
    	Name             [64]uint8
    	Encrypt_key      [32]uint8
    	Init             [2]uint64
    	Reserved         [4]uint8
    	_                [4]byte
    }
    
    type TIPCSubscr struct {
    	Seq     TIPCServiceRange
    	Timeout uint32
    	Filter  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go

    	Device           uint16
    	Inode            uint32
    	Rdevice          uint16
    	Offset           int32
    	Encrypt_type     int32
    	Encrypt_key_size int32
    	Flags            int32
    	Name             [64]uint8
    	Encrypt_key      [32]uint8
    	Init             [2]uint32
    	Reserved         [4]uint8
    }
    
    type TIPCSubscr struct {
    	Seq     TIPCServiceRange
    	Timeout uint32
    	Filter  uint32
    	Handle  [8]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)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go

    	Device           uint32
    	Inode            uint64
    	Rdevice          uint32
    	Offset           int32
    	Encrypt_type     int32
    	Encrypt_key_size int32
    	Flags            int32
    	Name             [64]int8
    	Encrypt_key      [32]uint8
    	Init             [2]uint64
    	Reserved         [4]int8
    	_                [4]byte
    }
    
    type TIPCSubscr struct {
    	Seq     TIPCServiceRange
    	Timeout uint32
    	Filter  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_386.go

    	Device           uint16
    	Inode            uint32
    	Rdevice          uint16
    	Offset           int32
    	Encrypt_type     int32
    	Encrypt_key_size int32
    	Flags            int32
    	Name             [64]int8
    	Encrypt_key      [32]uint8
    	Init             [2]uint32
    	Reserved         [4]int8
    }
    
    type TIPCSubscr struct {
    	Seq     TIPCServiceRange
    	Timeout uint32
    	Filter  uint32
    	Handle  [8]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go

    	Device           uint32
    	Inode            uint64
    	Rdevice          uint32
    	Offset           int32
    	Encrypt_type     int32
    	Encrypt_key_size int32
    	Flags            int32
    	Name             [64]int8
    	Encrypt_key      [32]uint8
    	Init             [2]uint64
    	Reserved         [4]int8
    	_                [4]byte
    }
    
    type TIPCSubscr struct {
    	Seq     TIPCServiceRange
    	Timeout uint32
    	Filter  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Sizelimit        uint64
    	Number           uint32
    	Encrypt_type     uint32
    	Encrypt_key_size uint32
    	Flags            uint32
    	File_name        [64]uint8
    	Crypt_name       [64]uint8
    	Encrypt_key      [32]uint8
    	Init             [2]uint64
    }
    type LoopConfig struct {
    	Fd   uint32
    	Size uint32
    	Info LoopInfo64
    	_    [8]uint64
    }
    
    type TIPCSocketAddr struct {
    	Ref  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  7. internal/kms/kes.go

    	return c.client.ImportKey(ctx, keyID, &kes.ImportKeyRequest{
    		Key: bytes,
    	})
    }
    
    // EncryptKey Encrypts and authenticates a (small) plaintext with the cryptographic key
    // The plaintext must not exceed 1 MB
    func (c *kesConn) EncryptKey(keyID string, plaintext []byte, ctx Context) ([]byte, error) {
    	ctxBytes, err := ctx.MarshalText()
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. src/crypto/aes/asm_ppc64x.s

    // https://github.com/dot-asm/cryptogams/blob/master/ppc/aesp8-ppc.pl
    
    // Some function names were changed to be consistent with Go function
    // names. For instance, function aes_p8_set_{en,de}crypt_key become
    // set{En,De}cryptKeyAsm. I also split setEncryptKeyAsm in two parts
    // and a new session was created (doEncryptKeyAsm). This was necessary to
    // avoid arguments overwriting when setDecryptKeyAsm calls setEncryptKeyAsm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top