github.com/xushiwei/go@v0.0.0-20130601165731-2b9d83f45bc9/src/pkg/crypto/x509/sec1_test.go (about) 1 // Copyright 2012 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package x509 6 7 import ( 8 "encoding/hex" 9 "testing" 10 ) 11 12 // Generated using: 13 // openssl ecparam -genkey -name secp384r1 -outform PEM 14 var ecPrivateKeyHex = `3081a40201010430bdb9839c08ee793d1157886a7a758a3c8b2a17a4df48f17ace57c72c56b4723cf21dcda21d4e1ad57ff034f19fcfd98ea00706052b81040022a16403620004feea808b5ee2429cfcce13c32160e1c960990bd050bb0fdf7222f3decd0a55008e32a6aa3c9062051c4cba92a7a3b178b24567412d43cdd2f882fa5addddd726fe3e208d2c26d733a773a597abb749714df7256ead5105fa6e7b3650de236b50` 15 16 func TestParseECPrivateKey(t *testing.T) { 17 derBytes, _ := hex.DecodeString(ecPrivateKeyHex) 18 _, err := ParseECPrivateKey(derBytes) 19 if err != nil { 20 t.Errorf("failed to decode EC private key: %s", err) 21 } 22 }