Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 249 for vcipher (0.16 sec)

  1. src/crypto/aes/asm_ppc64x.s

    //
    #define CIPHER_BLOCK(Vin, Vxor, Vout, vcipher, vciphel, label10, label12) \
    	VXOR	Vin, Vxor, Vout \
    	BEQ	CR1, label10 \
    	BEQ	CR2, label12 \
    	vcipher	Vout, V7, Vout \
    	vcipher	Vout, V8, Vout \
    	label12: \
    	vcipher	Vout, V9, Vout \
    	vcipher	Vout, V10, Vout \
    	label10: \
    	vcipher	Vout, V11, Vout \
    	vcipher	Vout, V12, Vout \
    	vcipher	Vout, V13, Vout \
    	vcipher	Vout, V14, Vout \
    	vcipher	Vout, V15, Vout \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.s

    	XXLOR VS4, VS4, V26; \
    	XXLOR VS5, VS5, V27; \
    	VCIPHER vin, V23, vin; \
    	VCIPHER vin, V24, vin; \
    	VCIPHER vin, V25, vin; \
    	VCIPHER vin, V26, vin; \
    	VCIPHER vin, V27, vin; \
    	XXLOR VS6, VS6, V23; \
    	XXLOR VS7, VS7, V24; \
    	XXLOR VS8, VS8, V25; \
    	XXLOR VS9, VS9, V26; \
    	VCIPHER vin, V23, vin; \
    	VCIPHER vin, V24, vin; \
    	VCIPHER vin, V25, vin; \
    	VCIPHER	vin, V26, vin
    
    // Encrypt 1 value (vin) with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/anames.go

    	"VPERM",
    	"VPERMXOR",
    	"VPERMR",
    	"VBPERMQ",
    	"VBPERMD",
    	"VSEL",
    	"VSPLTB",
    	"VSPLTH",
    	"VSPLTW",
    	"VSPLTISB",
    	"VSPLTISH",
    	"VSPLTISW",
    	"VCIPH",
    	"VCIPHER",
    	"VCIPHERLAST",
    	"VNCIPH",
    	"VNCIPHER",
    	"VNCIPHERLAST",
    	"VSBOX",
    	"VSHASIGMA",
    	"VSHASIGMAW",
    	"VSHASIGMAD",
    	"VMRGEW",
    	"VMRGOW",
    	"VCLZLSBB",
    	"VCTZLSBB",
    	"LXV",
    	"LXVL",
    	"LXVLL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/crypto/des/cipher.go

    type tripleDESCipher struct {
    	cipher1, cipher2, cipher3 desCipher
    }
    
    // NewTripleDESCipher creates and returns a new [cipher.Block].
    func NewTripleDESCipher(key []byte) (cipher.Block, error) {
    	if len(key) != 24 {
    		return nil, KeySizeError(len(key))
    	}
    
    	c := new(tripleDESCipher)
    	c.cipher1.generateSubkeys(key[:8])
    	c.cipher2.generateSubkeys(key[8:16])
    	c.cipher3.generateSubkeys(key[16:])
    	return c, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/ppc64.s

    	VSPLTISB $1, V1                 // 1021030c
    	VSPLTISW $1, V1                 // 1021038c
    	VSPLTISH $1, V1                 // 1021034c
    	VCIPHER V1, V2, V3              // 10611508
    	VCIPHERLAST V1, V2, V3          // 10611509
    	VNCIPHER V1, V2, V3             // 10611548
    	VNCIPHERLAST V1, V2, V3         // 10611549
    	VSBOX V1, V2                    // 104105c8
    	VSHASIGMAW $1, V1, $15, V2      // 10418e82
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    	{VCIPHER, 0xfc0007ff00000000, 0x1000050800000000, 0x0, // Vector AES Cipher VX-form (vcipher VRT,VRA,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    	{VCIPHERLAST, 0xfc0007ff00000000, 0x1000050900000000, 0x0, // Vector AES Cipher Last VX-form (vcipherlast VRT,VRA,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  7. src/crypto/cipher/cipher.go

    // license that can be found in the LICENSE file.
    
    // Package cipher implements standard block cipher modes that can be wrapped
    // around low-level block cipher implementations.
    // See https://csrc.nist.gov/groups/ST/toolkit/BCM/current_modes.html
    // and NIST Special Publication 800-38A.
    package cipher
    
    // A Block represents an implementation of block cipher
    // using a given key. It provides the capability to encrypt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. src/crypto/aes/cipher.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package aes
    
    import (
    	"crypto/cipher"
    	"crypto/internal/alias"
    	"crypto/internal/boring"
    	"strconv"
    )
    
    // The AES block size in bytes.
    const BlockSize = 16
    
    // A cipher is an instance of AES encryption using a particular key.
    type aesCipher struct {
    	l   uint8 // only this length of the enc and dec array is actually used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. pkg/model/fips.go

    		// Default (unset) cipher suites field in the FIPS build of Envoy uses only the FIPS ciphers.
    		// Therefore, we only filter this field when it is set.
    		if len(ctx.TlsParams.CipherSuites) > 0 {
    			ciphers := []string{}
    			for _, cipher := range ctx.TlsParams.CipherSuites {
    				if _, ok := fipsCipherIndex[cipher]; ok {
    					ciphers = append(ciphers, cipher)
    				}
    			}
    			ctx.TlsParams.CipherSuites = ciphers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    		case AVSPLTISB: /* vspltisb, vspltish, vspltisw */
    			opset(AVSPLTISH, r0)
    			opset(AVSPLTISW, r0)
    
    		case AVCIPH: /* vcipher, vcipherlast */
    			opset(AVCIPHER, r0)
    			opset(AVCIPHERLAST, r0)
    
    		case AVNCIPH: /* vncipher, vncipherlast */
    			opset(AVNCIPHER, r0)
    			opset(AVNCIPHERLAST, r0)
    
    		case AVSBOX: /* vsbox */
    			opset(AVSBOX, r0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top