| 1234567891011121314151617181920212223242526 | package signerimport (	"github.com/langgenius/dify-plugin-daemon/internal/core/license/private_key"	"github.com/langgenius/dify-plugin-daemon/internal/utils/encryption"	"github.com/langgenius/dify-plugin-daemon/pkg/plugin_packager/signer/withkey")/*	DifyPlugin is a file type that represents a plugin, it's designed to based on zip file format.	When signing a plugin, we use RSA-4096 to create a signature for the plugin and write the signature	into comment field of the zip file.*/// SignPlugin is a function that signs a plugin// It takes a plugin as a stream of bytes and signs it with RSA-4096 with a bundled private keyfunc SignPlugin(plugin []byte) ([]byte, error) {	// load private key	privateKey, err := encryption.LoadPrivateKey(private_key.PRIVATE_KEY)	if err != nil {		return nil, err	}	return withkey.SignPluginWithPrivateKey(plugin, privateKey)}
 |