fix package issue

This commit is contained in:
Sun Yimin 2022-06-20 11:19:59 +08:00 committed by GitHub
parent ae9d85d2f0
commit 3e2158f68d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ const tmplNISTEC = `// Copyright 2022 The Go Authors. All rights reserved.
{{ end }}
package sm2ec
import (
"github.com/emmansun/gmsm/sm2ec/fiat"
"github.com/emmansun/gmsm/internal/sm2ec/fiat"
"crypto/subtle"
"errors"
"sync"

View File

@ -10,7 +10,7 @@ package sm2ec
import (
"crypto/subtle"
"errors"
"github.com/emmansun/gmsm/sm2ec/fiat"
"github.com/emmansun/gmsm/internal/sm2ec/fiat"
"sync"
)