github.com/hyperledger/aries-framework-go@v0.3.2/pkg/doc/jose/jwk/jwk.go (about) 1 /* 2 Copyright SecureKey Technologies Inc. All Rights Reserved. 3 4 SPDX-License-Identifier: Apache-2.0 5 */ 6 7 package jwk 8 9 import ( 10 "github.com/hyperledger/aries-framework-go/component/kmscrypto/doc/jose/jwk" 11 ) 12 13 // JWK (JSON Web Key) is a JSON data structure that represents a cryptographic key. 14 type JWK = jwk.JWK 15 16 // ErrInvalidKey is returned when passed JWK is invalid. 17 var ErrInvalidKey = jwk.ErrInvalidKey