Commit ecf0690c authored by Adam Langley's avatar Adam Langley

crypto/x509: build fix for 32-bit

TBR=rsc

R=rsc
CC=go-dev
http://go/go-review/1024007
parent 17021f48
...@@ -4,6 +4,17 @@ ...@@ -4,6 +4,17 @@
package x509 package x509
import "testing"
func TestToKeepGoTestHappy(t *testing.T) {
}
/*
Div is broken for this key in 32-bit mode.
TODO(agl): reenabled when Div is fixed.
import ( import (
"big"; "big";
"crypto/rsa"; "crypto/rsa";
...@@ -50,3 +61,6 @@ var rsaPrivateKey = &rsa.PrivateKey{ ...@@ -50,3 +61,6 @@ var rsaPrivateKey = &rsa.PrivateKey{
P: bigFromString("98920366548084643601728869055592650835572950932266967461790948584315647051443"), P: bigFromString("98920366548084643601728869055592650835572950932266967461790948584315647051443"),
Q: bigFromString("94560208308847015747498523884063394671606671904944666360068158221458669711639"), Q: bigFromString("94560208308847015747498523884063394671606671904944666360068158221458669711639"),
} }
*/
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment