You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2019/06/27 17:10:58 UTC

[mynewt-newt] 02/02: Remove debug message

This is an automated email from the ASF dual-hosted git repository.

utzig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-newt.git

commit a9a90bc27404b350a0b9bc0503f1dbaee15b77bb
Author: Fabio Utzig <ut...@apache.org>
AuthorDate: Thu Jun 27 08:40:01 2019 -0300

    Remove debug message
---
 artifact/sec/pkcs.go | 1 -
 1 file changed, 1 deletion(-)

diff --git a/artifact/sec/pkcs.go b/artifact/sec/pkcs.go
index d509bc9..bbd5ac8 100644
--- a/artifact/sec/pkcs.go
+++ b/artifact/sec/pkcs.go
@@ -78,7 +78,6 @@ type hashFunc func() hash.Hash
 
 func parseEncryptedPrivateKey(der []byte) (key interface{}, err error) {
 	var wrapper pkcs5
-	fmt.Printf("unmarshalling %v\n", der)
 	if _, err = asn1.Unmarshal(der, &wrapper); err != nil {
 		return nil, err
 	}