Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mnist (0.03 sec)

  1. src/crypto/des/des_test.go

    			0xb2, 0x61, 0x12, 0xb8, 0x2a, 0x90, 0xb7, 0x2f},
    		[]byte{0xa3, 0xc2, 0x60, 0xb1, 0x0b, 0xb7, 0x28, 0x6e}, // random
    		[]byte{0x56, 0x73, 0x7d, 0xfb, 0xb5, 0xa1, 0xc3, 0xde}},
    }
    
    // NIST Special Publication 800-20, Appendix A
    // Key for use with Table A.1 tests
    var tableA1Key = []byte{
    	0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
    	0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define Y1    V3
    #define T0    V4
    #define T1    V5
    
    #define PL    V30
    #define PH    V31
    /*
     * https://choucroutage.com/Papers/SideChannelAttacks/ctrsa-2011-brown.pdf "Software Implementation of the NIST Elliptic Curves Over Prime Fields"
     *
     * A = X₁×Z₂²
     * B = Y₁×Z₂³
     * C = X₂×Z₁²-A
     * D = Y₂×Z₁³-B
     * X₃ = D² - 2A×C² - C³
     * Y₃ = D×(A×C² - X₃) - B×C³
     * Z₃ = Z₁×Z₂×C
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_s390x.s

    #define Y0    V2
    #define Y1    V3
    #define T0    V4
    #define T1    V5
    
    #define PL    V30
    #define PH    V31
    /*
     * https://delta.cs.cinvestav.mx/~francisco/arith/julio.pdf "Software Implementation of the NIST Elliptic Curves Over Prime Fields"
     *
     * A = X₁×Z₂²
     * B = Y₁×Z₂³
     * C = X₂×Z₁²-A
     * D = Y₂×Z₁³-B
     * X₃ = D² - 2A×C² - C³
     * Y₃ = D×(A×C² - X₃) - B×C³
     * Z₃ = Z₁×Z₂×C
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top