Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for xk (0.02 sec)

  1. src/crypto/aes/block.go

    // Encrypt one block from src into dst, using the expanded key xk.
    func encryptBlockGo(xk []uint32, dst, src []byte) {
    	_ = src[15] // early bounds check
    	s0 := byteorder.BeUint32(src[0:4])
    	s1 := byteorder.BeUint32(src[4:8])
    	s2 := byteorder.BeUint32(src[8:12])
    	s3 := byteorder.BeUint32(src[12:16])
    
    	// First round just XORs input with key.
    	s0 ^= xk[0]
    	s1 ^= xk[1]
    	s2 ^= xk[2]
    	s3 ^= xk[3]
    
    	// Middle rounds shuffle using tables.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    	// At completion, V2 will hold the ciphertext.
    	// Load xk[0:3] and xor with text
    	LXVD2X	(R0+R5), V1
    	VXOR	V0, V1, V0
    
    	// Load xk[4:11] and cipher
    	LXVD2X	(R6+R5), V1
    	LXVD2X	(R7+R5), V2
    	VCIPHER	V0, V1, V0
    	VCIPHER	V0, V2, V0
    
    	// Load xk[12:19] and cipher
    	LXVD2X	(R8+R5), V1
    	LXVD2X	(R9+R5), V2
    	VCIPHER	V0, V1, V0
    	VCIPHER	V0, V2, V0
    
    	// Load xk[20:27] and cipher
    	LXVD2X	(R10+R5), V1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/crypto/aes/asm_amd64.s

    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // func encryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    TEXT ·encryptBlockAsm(SB),NOSPLIT,$0
    	MOVQ nr+0(FP), CX
    	MOVQ xk+8(FP), AX
    	MOVQ dst+16(FP), DX
    	MOVQ src+24(FP), BX
    	MOVUPS 0(AX), X1
    	MOVUPS 0(BX), X0
    	ADDQ $16, AX
    	PXOR X1, X0
    	SUBQ $12, CX
    	JE Lenc192
    	JB Lenc128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/crypto/aes/cipher_asm.go

    	"crypto/internal/alias"
    	"crypto/internal/boring"
    	"internal/cpu"
    	"internal/goarch"
    )
    
    // defined in asm_*.s
    
    //go:noescape
    func encryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    
    //go:noescape
    func decryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    
    //go:noescape
    func expandKeyAsm(nr int, key *byte, enc *uint32, dec *uint32)
    
    type aesCipherAsm struct {
    	aesCipher
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/crypto/aes/asm_arm64.s

    DATA invSRows<>+0x00(SB)/8, $0x0b0e0104070a0d00
    DATA invSRows<>+0x08(SB)/8, $0x0306090c0f020508
    GLOBL invSRows<>(SB), (NOPTR+RODATA), $16
    // func encryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    TEXT ·encryptBlockAsm(SB),NOSPLIT,$0
    	MOVD	nr+0(FP), R9
    	MOVD	xk+8(FP), R10
    	MOVD	dst+16(FP), R11
    	MOVD	src+24(FP), R12
    
    	VLD1	(R12), [V0.B16]
    
    	CMP	$12, R9
    	BLT	enc128
    	BEQ	enc196
    enc256:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. samples/jwt-server/jwt-server.yaml

        Ei35D8xKtPdz/FaB7qgN2mu7V47oFizon7jLLqAvlWIIQ7Pku+XfjraDPtjxUj4u
        5qSrIfSWAeuJSEsSlGPyYJCFvqFNQYW0y8y7fCCQo7FObHfBmpp7kG2BViuLxebW
        zfi4K3gDCpR8lWiNEjm4NamQ07OpCtmLZfaueZH/vSXXVVbs6VCsb6nJqJrGDc5t
        K/xK
        -----END CERTIFICATE-----
      server.key: |
        -----BEGIN PRIVATE KEY-----
        MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC/eqwMj7cVzrkS
        64+cobgE3R0tlnL7AU3Gu6zNhGDR+g/2RRCtRS/Xa67/LZGC5/T3L2ZdfMZznWTB
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv12-RSA-RC4

    00000000  16 03 03 00 55 02 00 00  51 03 03 7c f1 44 f1 2a  |....U...Q..|.D.*|
    00000010  6f 7f 62 66 08 15 dd c8  bd 4a 30 b5 a3 73 53 82  |o.bf.....J0..sS.|
    00000020  93 78 6b f2 c6 70 70 1e  4d 8f 48 20 24 b3 17 46  |.xk..pp.M.H $..F|
    00000030  37 c0 0f 79 af f4 48 43  17 6b ea df 6b 73 07 cf  |7..y..HC.k..ks..|
    00000040  5f 95 c5 5c 8d b2 99 5c  fd 30 e5 1b 00 05 00 00  |_..\...\.0......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv13-IssueTicketPreDisable

    000003a0  d8 27 88 4c e2 c7 42 9d  08 75 62 49 df fa 84 e8  |.'.L..B..ubI....|
    000003b0  11 17 03 03 00 35 39 db  59 c8 ab 08 33 da 2c 19  |.....59.Y...3.,.|
    000003c0  04 10 bb 18 b3 10 78 4b  2c a2 2b a2 e2 67 d1 6f  |......xK,.+..g.o|
    000003d0  07 9c 0b d2 e1 24 a8 ac  7b ce 77 55 7d b8 b3 9b  |.....$..{.wU}...|
    000003e0  82 7f bc 18 7a 61 a8 28  e2 a9 1e 17 03 03 00 8b  |....za.(........|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedAndPKCS1v15Given

    00000060  ad 1b 16 8e 39 99 64 7c  c5 49 24 83 c4 4e f6 86  |....9.d|.I$..N..|
    00000070  6b 5d 68 ae f4 0b 58 23  83 eb ab 01 52 4d 07 a1  |k]h...X#....RM..|
    00000080  59 00 e8 dc a5 a1 6f 76  e2 e9 f2 e1 21 58 6b a0  |Y.....ov....!Xk.|
    00000090  15 03 03 00 30 00 00 00  00 00 00 00 00 00 00 00  |....0...........|
    000000a0  00 00 00 00 00 3c 6e a7  81 36 d0 8c 99 d8 f3 55  |.....<n..6.....U|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv13-HelloRetryRequest

    000000b0  9d 99 61 93 95 d3 7a 1c  9c b0 1b ba 17 03 03 02  |..a...z.........|
    000000c0  6d 62 fd b6 84 db 87 5f  ec 30 bc df 0c 5d b7 f9  |mb....._.0...]..|
    000000d0  58 6b 7e ce 19 54 a9 0c  3f 66 f6 23 b6 36 19 a9  |Xk~..T..?f.#.6..|
    000000e0  ba e2 44 28 70 b9 35 14  fe 33 50 64 30 dd b1 35  |..D(p.5..3Pd0..5|
    000000f0  9c e5 f6 f5 66 09 be 05  82 c8 9c 7a 28 d1 6a 3d  |....f......z(.j=|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top