# Functions
BuildCryptoSuiteConfigFromOptions will return an CryptoConfig instance pre-built with Optional interfaces provided in fabsdk's WithConfigCrypto(opts...) call.
ConfigFromBackend returns CryptoSuite config implementation for given backend.
DefaultInitialized returns true if a default suite has already been set.
GetDefault returns default core.
GetECDSAP256KeyGenOpts returns options for ECDSA key generation with curve P-256.
GetSHA256Opts returns options relating to SHA-256.
GetSHAOpts returns options for computing SHA.
IsCryptoConfigFullyOverridden will return true if all of the argument's sub interfaces is not nil (ie CryptoSuiteConfig interface not fully overridden).
SetDefault sets default suite if one is not already set or createdMake sure you set default suite before very first call to GetDefault(),otherwise this function will return an error.
UpdateMissingOptsWithDefaultConfig will verify if any functions of the CryptoConfig were not updated with fabsdk's WithConfigCrypto(opts...) call, then use default CryptoConfig interface for these functions instead.
# Structs
Config represents the crypto suite configuration for the client.
CryptoConfigOptions represents CryptoConfig interface with overridable interface functions if a function is not overridden, the default CryptoConfig implementation will be used.