Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vavgub (1.06 sec)

  1. src/crypto/rsa/rsa.go

    	}
    
    	return encrypt(pub, em)
    }
    
    // ErrDecryption represents a failure to decrypt a message.
    // It is deliberately vague to avoid adaptive attacks.
    var ErrDecryption = errors.New("crypto/rsa: decryption error")
    
    // ErrVerification represents a failure to verify a signature.
    // It is deliberately vague to avoid adaptive attacks.
    var ErrVerification = errors.New("crypto/rsa: verification error")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/math/big/natdiv.go

    and rem = u - quo·v.
    
    
    Long Division
    
    Division in a computer proceeds the same as long division in elementary school,
    but computers are not as good as schoolchildren at following vague directions,
    so we have to be much more precise about the actual steps and what can happen.
    
    We work from most to least significant digit of the quotient, doing:
    
     • Guess a digit q, the number of v to subtract from the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top