Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gcmAesEnc (0.12 sec)

  1. src/crypto/aes/aes_gcm.go

    //go:noescape
    func gcmAesInit(productTable *[256]byte, ks []uint32)
    
    //go:noescape
    func gcmAesData(productTable *[256]byte, data []byte, T *[16]byte)
    
    //go:noescape
    func gcmAesEnc(productTable *[256]byte, dst, src []byte, ctr, T *[16]byte, ks []uint32)
    
    //go:noescape
    func gcmAesDec(productTable *[256]byte, dst, src []byte, ctr, T *[16]byte, ks []uint32)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_amd64.s

    		JNE dataLoadLoop
    
    	JMP dataMul
    
    dataBail:
    	MOVOU ACC0, (tPtr)
    	RET
    #undef pTbl
    #undef aut
    #undef tPtr
    #undef autLen
    
    // func gcmAesEnc(productTable *[256]byte, dst, src []byte, ctr, T *[16]byte, ks []uint32)
    TEXT ·gcmAesEnc(SB),0,$256-96
    #define pTbl DI
    #define ctx DX
    #define ctrPtr CX
    #define ptx SI
    #define ks AX
    #define tPtr R8
    #define ptxLen R9
    #define aluCTR R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_arm64.s

    dataBail:
    	VST1	[ACC0.B16], (tPtr)
    	RET
    
    #undef pTbl
    #undef aut
    #undef tPtr
    #undef autLen
    #undef H0
    #undef pTblSave
    
    // func gcmAesEnc(productTable *[256]byte, dst, src []byte, ctr, T *[16]byte, ks []uint32)
    TEXT ·gcmAesEnc(SB),NOSPLIT,$0
    #define pTbl R0
    #define dstPtr R1
    #define ctrPtr R2
    #define srcPtr R3
    #define ks R4
    #define tPtr R5
    #define srcPtrLen R6
    #define aluCTR R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top