Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for secondByteIsTwo (0.25 sec)

  1. src/crypto/rsa/pkcs1v15.go

    		if err != nil {
    			return
    		}
    	} else {
    		em, err = decrypt(priv, ciphertext, noCheck)
    		if err != nil {
    			return
    		}
    	}
    
    	firstByteIsZero := subtle.ConstantTimeByteEq(em[0], 0)
    	secondByteIsTwo := subtle.ConstantTimeByteEq(em[1], 2)
    
    	// The remainder of the plaintext must be a string of non-zero random
    	// octets, followed by a 0, followed by the message.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top