The Identity Service (token/services/identity) is an internal infrastructure service of Panurus. It provides a unified interface for managing identities, signatures, and verification, operating independently of the core Fabric Smart Client (FSC) identity service.
This independence ensures that token-related cryptographic material (such as Idemix pseudonyms or X.509 certificates used for token ownership) is managed according to the specific privacy and security requirements of the Token Drivers, regardless of the underlying DLT platform.
The Identity Service abstracts the complexity of different cryptographic schemes, allowing Panurus to support multiple identity types (e.g., X.509, Idemix) and different storage backends seamlessly.
It is a fundamental component used by token drivers and application services (like the TTX service) to handle:
The Identity Service implements the Driver API interfaces defined in token/driver/wallet.go. This ensures that the Token Management System (TMS) can interact with any identity implementation through a standard set of methods.
The following table shows how the internal components map to the Driver API interfaces:
| Component | Implements Driver Interface | Description |
|---|---|---|
identity.Provider |
driver.IdentityProvider |
Core identity management & verification. |
wallet.Service |
driver.WalletService |
Registry for all wallets (Owner, Issuer, etc.). |
role.LongTermOwnerWallet |
driver.OwnerWallet |
Long-Term Identity-based Owner wallet functionality. |
role.AnonymousOwnerWallet |
driver.OwnerWallet |
Anonymous Identity-based Owner wallet functionality. |
role.IssuerWallet |
driver.IssuerWallet |
Issuer wallet functionality. |
role.AuditorWallet |
driver.AuditorWallet |
Auditor wallet functionality. |
role.CertifierWallet |
driver.CertifierWallet |
Certifier wallet functionality. |
classDiagram
direction TB
%% Driver Interfaces
class IdentityProvider {
<<interface>>
+GetSigner()
+GetAuditInfo()
+IsMe()
}
class WalletService {
<<interface>>
+OwnerWallet()
+IssuerWallet()
+RegisterRecipientIdentity()
}
%% Concrete Implementations
class identity_Provider["identity.Provider"] {
-Storage
-Deserializers
-SignerCache
}
class wallet_Service["wallet.Service"] {
-RoleRegistry
-IdentityProvider
-OwnerWallet
-IssuerWallet
-AuditorWallet
-CertifierWallet
}
class role_Role["role.Role"] {
-LocalMembership
+GetIdentityInfo()
}
class membership_KeyManagerProvider["membership.KeyManagerProvider"] {
<<interface>>
+Get() KeyManager
}
identity_Provider ..|> IdentityProvider : Implements
wallet_Service ..|> WalletService : Implements
wallet_Service --> identity_Provider : Uses
wallet_Service --> role_Role : Uses (via RoleRegistry)
role_Role --> membership_KeyManagerProvider : Uses (via LocalMembership)
note for membership_KeyManagerProvider "Handles low-level crypto<br/>and identity verification"
note for wallet_Service "High-level management<br/>of wallets and roles"
The LocalMembership component (token/services/identity/membership) plays a pivotal role in managing local identities for a specific role (e.g., Owner, Issuer).
LocalMembership automatically wraps it using WrapWithType.
This ensures that the generated identity carries the correct type information required by the system (as defined in token/services/identity/typed.go).LocalMembership serves as the foundational implementation for role.Role.
When you interact with a Role to resolve an identity or sign a transaction, you are effectively delegating to the underlying LocalMembership.Load first registers the identities coming from the configuration, then the configurations persisted in the identity store.
Stored configurations are resolved concurrently — KeyManagerProvider.Get must support concurrent calls for distinct configurations, and
each returned KeyManager must either be independently owned by the caller or safe for concurrent EnrollmentID calls — and the results
are committed to the in-memory indices sequentially in the original store order, so identity ordering (e.g. fallback default selection,
same-name tie-breaks) is deterministic.The following example demonstrates how these services are instantiated and wired together, as seen in the ZKATDLog driver:
func (d *Base) NewWalletService(...) (*wallet.Service, error) {
// 1. Create Identity Provider
identityProvider := identity.NewProvider(...)
// 2. Initialize Membership Role Factory
roleFactory := membership.NewRoleFactory(...)
// 3. Configure Key Managers (e.g. Idemix and X.509 for Owner role)
// we have one key manager to handle fabtoken tokens and one for each idemix issuer public key in the public parameters
kmps := make([]membership.KeyManagerProvider, 0)
// ... add Idemix Key Manager Providers ...
kmps = append(kmps, x509.NewKeyManagerProvider(...))
// 4. Create and Register Roles
roles := role.NewRoles()
// Owner Role (with anonymous identities)
ownerRole, err := roleFactory.NewRole(identity.OwnerRole, true, nil, kmps...)
roles.Register(identity.OwnerRole, ownerRole)
// Issuer Role (no anonymous identities)
issuerRole, err := roleFactory.NewRole(identity.IssuerRole, false, pp.Issuers(), x509.NewKeyManagerProvider(...))
roles.Register(identity.IssuerRole, issuerRole)
// ... Register Auditor and Certifier roles ...
// 5. Create Wallet Service with the registered roles
return wallet.NewService(
logger,
identityProvider,
deserializer,
// Convert the roles registry into the format expected by the wallet service
wallet.Convert(roles.Registries(...)),
), nil
}
GetSigner’s default resolution path is a fallback deserializer: a linear scan across every KeyManager registered under the identity’s type, each probed with a cryptographic sign+verify to find the one that actually matches. SignerRouter (token/services/identity/signer_router.go) is an optional fast path that skips this scan-and-probe entirely: it resolves the conf_id an identity was bound under (via a ConfIDResolver) and dispatches straight to the single KeyManager registered for that conf_id.
SignerRouter with identity.NewSignerRouter(m *Metrics), registers KeyManagers against their conf_id with Register, sets a ConfIDResolver with SetConfIDResolver, and attaches it to the Provider with Provider.SetSignerRouter. See token/core/fabtoken/v1/driver/ws.go and the zkatdlog equivalent.Resolve returns ok=false (never an error) whenever routing cannot be attempted (no resolver set, no conf_id mapping, no KeyManager registered for it) or the routed KeyManager itself fails — callers always fall back to the probing deserializer in that case, never treating it as a hard failure.KeyManager also implements idriver.ProbeFreeSignerDeserializer, Resolve calls DeserializeSignerNoProbe directly, skipping the cryptographic probe that the fallback path relies on to catch a mismatched KeyManager. This is only safe because the conf_id already pins the identity to exactly one KeyManager.Because the probe is skipped, routing correctness rests entirely on conf_id identifying exactly one configuration. A conf_id is minted by AddConfiguration from driver.IdentityConfiguration.UniqueID() — the hash of CompositeKey(), an encoding of the (ID, Type, URL) tuple (token/driver/wallet.go) — and thereafter lives in identity_configurations.conf_id. That encoding joins the three fields with @ and escapes any @ or \ occurring inside a field, so distinct tuples always produce distinct keys.
The escaping is what makes the encoding injective. Joining the fields unescaped would let {ID: "a@b", Type: "c"} and {ID: "a", Type: "b@c"} produce the same conf_id; SignerRouter.byConfID would then hold a single entry for the two configurations and hand identities of one to the other’s KeyManager — with the probe skipped, nothing detects it, and it surfaces later as invalid signatures rather than as a routing error.
Three consequences worth knowing:
escapeConfigKeyField walks its input a byte at a time. Both delimiters are ASCII, so decoding UTF-8 buys nothing — and costs correctness: ranging over a Go string yields utf8.RuneError for each byte that is not valid UTF-8, which would substitute a replacement character for the original byte and make {ID: "\xff@"} and {ID: "\xfe@"} encode identically. URL is a filesystem path, and paths are not required to be valid UTF-8, so the encoder treats every field as an opaque byte string.configKey shares the encoding. LocalMembership.configKey (token/services/identity/membership/lm.go), which keys the in-memory localIdentitiesByConfig index, delegates to the same CompositeKey(). The in-memory index and the persisted conf_id therefore cannot disagree about whether two configurations are the same one.conf_id is stored state, so it is read back rather than recomputed. A field containing neither @ nor \ is left untouched by the escaping, so for those configurations conf_id is byte-identical to what the pre-escaping scheme produced. Every other configuration gets a different value — and that set is wider than the set of configurations that could actually collide: a lone {ID: "alice@org1", Type: "idemix", URL: "/msp"} changes conf_id even though it never had an ambiguous partner. Since ID comes from directory entries (registerLocalIdentities) and URL is a filesystem path, @ in one of these fields is ordinary rather than exotic.
That matters because conf_id is a UNIQUE column of identity_configurations and the target of the wallets.conf_id foreign key, while commitLocalIdentity looks a configuration up by (id, type, url) — so it never rewrites a stored conf_id in response to an encoding change. Recomputing the identifier for such a configuration therefore yields one that no identity_configurations row carries, and WalletStore.StoreIdentity fails the foreign key: FOREIGN KEY constraint failed. In practice the node can no longer mint a pseudonym or serve RegisterRecipient, so it cannot receive tokens.
For that reason conf_id is treated as what it is — persisted state. LocalMembership.confIDFor reads it back with IdentityStoreService.GetConfigurationID and binds identities under the stored value, falling back to UniqueID() only for a configuration that is not in the store yet, where it is exactly what the following AddConfiguration writes. Configurations stored before the encoding changed keep their original conf_id indefinitely; ones created afterwards get the unambiguous encoding. No migration is needed, and nodes running either release agree on the identifier for the same configuration — which an in-place migration could not guarantee during a rolling upgrade.
This holds for the SQL backend, which stores conf_id in a column and can hand back exactly what it wrote. The kvs backend (token/services/storage/db/kvs/identitydb.go) serialises the whole IdentityConfiguration under a composite key and keeps no separate conf_id, so GetConfigurationID re-derives it from the stored record — with the current encoding. There is no foreign key there for a changed identifier to violate, so nothing hard-fails; instead a configuration stored before the change is reported with a new conf_id, while WalletStore.GetConfID — the ConfIDResolver the router is wired to — still returns the original one for the identities already bound to it. SignerRouter.byConfID therefore misses for those identities and every resolution falls back to the probing deserializer: correct, but without the fast path. Newly registered configurations are unaffected.
identity.Metrics (token/services/identity/metrics.go) instruments both Provider.GetSigner and SignerRouter, sharing one Metrics instance built with identity.NewMetrics(provider) (a nil provider yields a disabled.Provider-backed noop):
| Metric | Type | Labels | Purpose |
|---|---|---|---|
identity_signer_resolutions_total |
Counter | network, channel, namespace, outcome = cache | routed | fallback |
How each GetSigner call was ultimately resolved. |
identity_get_signer_duration_seconds |
Histogram | network, channel, namespace, path = cache | routed | fallback |
GetSigner wall-clock time by resolution path; compares the latency saved by skipping the probe. |
identity_signer_router_registrations_total |
Counter | network, channel, namespace |
conf_id→KeyManager bindings registered with the SignerRouter. A near-zero count in production means routing is never populated and every call falls back. |
identity_signer_router_no_probe_errors_total |
Counter | network, channel, namespace |
Failures of the probe-free deserialization path — since that path skips the cryptographic check, a non-zero count is worth investigating as a conf_id routing bug. |
Note:
providerhere is aNewTMSProvider-wrappedProvider(see Driver Metrics), which bindsnetwork/channel/namespaceon every metric via.With(...)before returning it. EveryCounterOpts/HistogramOptsabove must therefore declare those three asLabelNamesin addition to its own label(s), or the metric panics with “inconsistent label cardinality” on first use. This is exactly the bug that crashed the DVP/DLog integration suite inSignerRouter.Registerbefore it was fixed.
Anonymous owner wallets hand out a fresh pseudonym for every payment. Generating one is
expensive (an Idemix pseudonym plus a registry binding), so AnonymousOwnerWallet keeps a
pre-provisioned buffer of recipient data. Two caches implement that buffer:
| Cache | Buffers | Sized by |
|---|---|---|
role.RecipientDataCache (token/services/identity/role/cache.go) |
driver.RecipientData (pseudonym + audit info) for one wallet |
wallets.owners[].cacheSize, falling back to wallets.defaultCacheSize (see configuration) |
idemix/cache.IdentityCache (token/services/identity/idemix/cache/cache.go) |
idriver.IdentityDescriptor for one Idemix key manager |
same lookup, via KeyManagerProvider.cacheSizeForID |
Both follow the same contract:
Close() is mandatory and idempotent. It cancels the background context, which
terminates the provisioning goroutine even while it is parked on a full buffer or
inside a retry backoff. A cache that is never closed keeps its goroutine, its channel
and its backend closure alive for the lifetime of the process. After Close() the
cache still serves requests from the backend; it simply stops pre-provisioning.| Metric | Type | Cache | Purpose |
|---|---|---|---|
recipient_data_cache_level |
Gauge | RecipientDataCache |
Entries currently buffered. Counted only once an entry is really in the buffer, so it cannot drift upward when the producer is blocked. |
recipient_data_provision_failures_total |
Counter | RecipientDataCache |
Failed pre-provisioning attempts. A rising rate means the identity backend is failing and requests are falling back to the slower on-demand path. |
cache_level |
Gauge | idemix IdentityCache |
As above, for Idemix identities. |
cache_provision_failures_total |
Counter | idemix IdentityCache |
As above, for Idemix identities. |
Note: these providers are
NewTMSProvider-wrapped, so everyGaugeOpts/CounterOptsabove must declarenetwork,channelandnamespaceinLabelNames— omitting them panics with “inconsistent label cardinality” on first use. See Driver Metrics.
Close()Application code does not normally close these caches itself: they are released by the existing teardown chain when a token management service is unloaded, for instance when its public parameters are updated.
core.TMSProvider.Update (token/core/tms.go)
└── Service.Done() (token/core/common/tms.go)
└── wallet.Service.Done() (token/services/identity/wallet/service.go)
└── role.Registry.Done()
├── Close() on every wallet it created that holds resources
│ └── AnonymousOwnerWallet.Close() → RecipientDataCache.Close()
└── Role.Done() → LocalMembership.Close()
LocalMembership.Close() is best-effort: it releases its key managers, then unsubscribes
from the identity store’s change notifier. If the store cannot supply a notifier — because
it does not support one (storage.ErrNotSupported) or because it fails outright — the
unsubscribe step is skipped and, in the failure case, logged. Close() returns no error and
must never panic, since it runs on the shutdown path of an already-degraded node.
role.Registry.Done() closes wallets through a local interface{ Close() } assertion
rather than through driver.Wallet, so wallet types with nothing to release need not
implement a no-op Close(). If you add a wallet type that owns a goroutine, a ticker or
any other resource, give it a Close() method and it will be released automatically.
Note: tests that exercise an anonymous owner wallet should
t.Cleanup(w.Close), otherwise each test leaves a provisioning goroutine behind for the rest of the run.
The Identity Service leverages a wrapper called TypedIdentity to support various identity schemes uniformly. This allows Panurus to be extensible and capable of handling different cryptographic requirements.
TypedIdentity (defined in token/services/identity/typed.go) acts as a generic container.
It wraps the raw identity bytes with a type label, enabling the system to verify deserializers and process signatures correctly without hardcoding implementation details.
SEQUENCE.Type (string): The identifier of the identity scheme (e.g., "x509", "idemix").Identity (bytes): The raw payload of the identity, specific to the key manager.The identity service includes two primary implementations for concrete identities:
Standard PKIX identities.
AuditInfo structure containing the Enrollment ID and Revocation Handle.
EID (string): The enrollment identifier.RH (bytes): The revocation handle.TypedIdentity payload: Raw X.509 certificate bytes.token/services/identity/x509.The X.509 Key Manager expects a specific folder structure when loading configurations from a local directory. It supports loading public signing certificates and, optionally, private keys for signing capabilities.
The cryptographic materials are stored in standard PEM format. By default, the directory layout is as follows:
<dir>/
├── signcerts/
│ └── <cert>.pem # Public signing certificate (X.509 PEM format)
└── keystore/
└── priv_sk # (Optional) Private key file (PEM format)
signcerts/ (Required): This folder must contain at least one PEM-encoded X.509 certificate. The Key Manager loads the first valid PEM certificate found in this directory as the public identity/signer.keystore/ (Optional): This folder holds the corresponding private key.
priv_sk.PRIVATE KEY, RSA PRIVATE KEY, or EC PRIVATE KEY.KeyManager operates in signing mode (capable of generating signatures).KeyManager operates in verifying-only mode (only capable of verifying signatures).While keystore is the default directory name for the private key, a custom keystore directory name can be passed as an argument when initializing the key manager (e.g. to load priv_sk from <dir>/<custom-keystore-name>/priv_sk).
Advanced identity encryption based on Zero-Knowledge Proofs (ZKP).
SerializedIdemixIdentity message.
NymPublicKey (bytes): The pseudonym public key ($N = g^{sk} \cdot h^r$).Proof (bytes): A zero-knowledge proof of credential possession and nym derivation.Schema (string): The version of the credential schema.AuditInfo structure.
EidNymAuditData: Cryptographic data required to de-anonymize the Enrollment ID.RhNymAuditData: Cryptographic data required to de-anonymize the Revocation Handle.Attributes (array of bytes): The cleartext values of the attributes (e.g., EID at index 2, RH at index 3).Schema (string): The credential schema version.TypedIdentity payload: Protobuf.token/services/identity/idemix.The Idemix Key Manager expects a specific folder structure when loading configurations from a local directory. It supports two different formats for cryptographic configurations:
In this format, cryptographic materials are stored in binary protobuf format (generated by idemixgen). The directory structure is as follows:
<dir>/
├── msp/
│ └── IssuerPublicKey # Issuer Public Key (binary protobuf)
└── user/
├── SignerConfig # Signer configuration (binary protobuf)
└── SignerConfigFull # (Optional) Full signer config with secret keys
[!NOTE]
SignerConfigFullis checked first and used if it exists when the service is configured to force the load of secret keys (i.e.ignoreVerifyOnlyWalletis set totrue).
In this format (typically generated by Fabric-CA), the signer configuration is stored as a JSON file:
<dir>/
├── msp/
│ └── IssuerPublicKey # Issuer Public Key (binary protobuf)
└── user/
└── SignerConfig # Signer configuration (JSON format)
To accommodate different deployment structures, the Key Manager performs directory resolution using a fallback strategy:
<dir>).msp path element to the directory (i.e., <dir>/msp/) and tries again (e.g. searching for <dir>/msp/msp/IssuerPublicKey and <dir>/msp/user/SignerConfig).When the loaded signer configuration carries secret key material (user secret key plus credential),
the Idemix Key Manager verifies the credential against the issuer public key while it is being
constructed. A credential that does not verify — whether the underlying BCCSP reports the failure as
an error or simply as a negative verification result — makes construction fail with
credential is not cryptographically valid; no key manager is returned. Configurations without
secret key material are loaded as verify-only (remote) key managers and skip this check.
An extension of Idemix that uses a commitment to the Enrollment ID (EID) as the identity instead of the full Idemix signature.
AuditInfo.
AuditInfo.IdemixSignature (bytes): The full Idemix signature that would have been the identity in the standard Idemix manager.TypedIdentity payload: Raw bytes of the nym.SEQUENCE containing:
Creator (bytes): The full Idemix signature (enabling verification against the IPK).Signature (bytes): The actual pseudonym signature bytes.token/services/identity/idemixnym.Key Differences from Standard Idemix:
| Aspect | Idemix | IdemixNym |
|---|---|---|
| Identity (Token Owner) | Full Idemix signature with attributes | Nym EID (commitment to enrollment ID) |
| Identity Payload Encoding | Protobuf | Raw bytes |
| Audit Info Encoding | JSON | JSON (extended) |
| Signature Encoding | Raw bytes | ASN.1 (Creator + Signature) |
| Identity Size | Large (~several KB) | Small (~32-64 bytes) |
| Storage Overhead | High | Low |
Audit info is JSON and can arrive from a counterparty (recipient registration, auditing
flows), so both crypto.AuditInfo.FromBytes
(token/services/identity/idemix/crypto/audit.go) and nym.AuditInfo.FromBytes
(token/services/identity/idemixnym/nym/audit.go) treat their input as untrusted and reject
malformed payloads with an error.
EidNymAuditData and RhNymAuditData embed mathlib curve elements, which JSON-encode as
a curve ID plus the raw element bytes:
{"EidNymAuditData":{"Nym":{"curve":3,"element":"..."},"Rand":{...},"Attr":{...}}}
mathlib’s UnmarshalJSON uses that curve ID to index its internal curve table without a
bounds check, so an out-of-range ID raises an index out of range panic from inside
encoding/json. Both FromBytes implementations therefore run their decode through
crypto.UnmarshalAuditInfo, which recovers that panic and returns it as an ordinary error:
return crypto.UnmarshalAuditInfo(func() error {
return json.Unmarshal(raw, a)
})
The guard wraps the real decode rather than pre-validating the payload’s curve IDs, because
mathlib runs during encoding/json’s traversal: a separate validation pass has to
reproduce that traversal exactly to see every curve element the decode reaches, including
ones that never appear in the decoded result (a duplicate key overwriting an earlier value,
input after the first JSON value, a curve element following a type error). The same defect
is contained the same way in FromG1Proto
(token/core/zkatdlog/nogh/protos-go/utils/proto.go).
Where curve IDs arrive as plain data rather than through a third-party unmarshaler, prefer an
explicit bounds check instead — see curveAt in
token/core/common/encoding/asn1/asn1.go and PublicParams.Validate in
token/core/zkatdlog/nogh/v1/setup/setup.go.
The architecture supports specialized identity types for complex use cases:
Located in token/services/identity/multisig.
MultiIdentity sequence.
Identities (array of TypedIdentity bytes): The constituent identities.AuditInfo structure.
IdentityAuditInfos (array of IdentityAuditInfo): A list of audit information blobs for each constituent identity.TypedIdentity payload: ASN.1.Located in token/services/identity/boolpolicy.
$N slot references and the operators AND, OR, and parentheses:
$0 OR $1 — either component identity 0 or 1 can satisfy ownership alone.$0 AND $1 — both component identity 0 and 1 must sign.($0 OR $1) AND $2 — one of the first two parties plus the third must sign.PolicyIdentity sequence:
policy (UTF8String): the boolean expression, e.g. "$0 OR $1".identities (SEQUENCE OF OCTET STRING): ordered list of raw component identity bytes; $N indexes into this list.AuditInfo structure.
IdentityAuditInfos (array of IdentityAuditInfo): per-component audit info blobs in the same order as identities.NewAuditInfoDeserializer), the policy identity reports the enrollment ID shared by all component identities. Components with no enrollment ID of their own (e.g. a nested composite spanning enrollments), components whose audit info is missing (e.g. an identity not registered locally), or disagreeing components yield an empty enrollment ID; a missing component audit info takes precedence over subtype resolution, so an unknown component identity type carrying no audit info also yields an empty enrollment ID. A non-empty component audit info that cannot be resolved, an invalid component identity, or a component count mismatch is an error.TypedIdentity payload: ASN.1 DER.PolicySignature (SEQUENCE OF OCTET STRING) where each slot corresponds to one component identity. A slot may be nil/empty when that component does not need to sign (valid for OR branches).token/services/identity/boolpolicy.Located in token/services/identity/interop/htlc.
Script structure defining the swap conditions.
Sender (bytes): The wrapped identity of the sender.Recipient (bytes): The wrapped identity of the recipient.Deadline (uint64): The timeout period.HashInfo: Information about the hash lock.ScriptInfo structure.
Sender (bytes): The audit info for the sender’s identity.Recipient (bytes): The audit info for the recipient’s identity.TypedIdentity payload: JSON.The Identity Service is designed to be extensible through the driver interfaces defined in Panurus. Custom identity implementations can be provided by implementing the required identity and wallet interfaces.
Typical extension scenarios include:
KeyManagerKeyManagerKeyManagerProvider to plug new identity mechanisms into LocalMembershipThe steps below describe how to add a new composite identity type end-to-end, based on the pattern used for PolicyIdentity (token/services/identity/boolpolicy).
Add a new constant to token/driver/wallet.go alongside the existing tags:
const (
// ...existing tags...
MyNewIdentityType IdentityType = 7
MyNewIdentityTypeString = "mynew"
)
The integer must be unique across all registered identity types.
Create a package (e.g. token/services/identity/mynew/) and define the identity struct. Use ASN.1 DER for structured binary data (as PolicyIdentity does) or JSON for human-readable payloads (as HTLC does):
type MyNewIdentity struct {
SomeField string `asn1:"utf8"`
Parts [][]byte
}
func (m *MyNewIdentity) Serialize() ([]byte, error) { return asn1.Marshal(*m) }
func (m *MyNewIdentity) Deserialize(raw []byte) error {
_, err := asn1.Unmarshal(raw, m)
return err
}
Expose Wrap / Unwrap helpers (see boolpolicy.WrapPolicyIdentity / boolpolicy.Unwrap) that embed the serialized struct inside a TypedIdentity envelope with the new type tag.
Add a Verifier that accepts the new signature format and a Deserializer that reconstructs a Verifier from raw identity bytes. Register the deserializer via des.AddTypedVerifierDeserializer(mynew.MyNewIdentityType, ...) in each driver’s NewTokenService (see token/core/fabtoken/v1/driver/driver.go and the zkatdlog equivalent).
Define a struct for the signature produced over the token request (analogous to PolicySignature in boolpolicy/sig.go). Include ASN.1 or JSON encoding helpers and a JoinSignatures function if multiple parties contribute partial signatures.
Authorization checkerCreate an EscrowAuth struct (see token/services/ttx/boolpolicy/auth.go) that implements the Authorization interface:
type EscrowAuth struct{ WalletService driver.WalletService }
func (a *EscrowAuth) AmIAnAuditor() bool { return false }
func (a *EscrowAuth) IsMine(ctx context.Context, tok *token.Token) (string, []string, bool) { ... }
func (a *EscrowAuth) Issued(_ context.Context, _ driver.Identity, _ *token.Token) bool { return false }
func (a *EscrowAuth) OwnerType(raw []byte) (driver.IdentityType, []byte, error) { ... }
Register it in both driver files inside NewAuthorizationMultiplexer:
// token/core/fabtoken/v1/driver/driver.go (and the zkatdlog equivalent)
authorization := common.NewAuthorizationMultiplexer(
common.NewTMSAuthorization(...),
htlc.NewScriptAuth(ws),
multisig.NewEscrowAuth(ws),
boolpolicy.NewEscrowAuth(ws),
mynew.NewEscrowAuth(ws), // ← add here
)
Create an OwnerWallet wrapper (see token/services/ttx/boolpolicy/wallet.go) that filters the unspent token list to tokens whose owner is the new identity type, and exposes domain-specific helpers (e.g. VerifyApprover).
If the new identity requires interactive negotiation between parties to assemble the composite identity before a transfer, add a RequestMyNewIdentity function following the pattern of ttx.RequestPolicyIdentity (token/services/ttx/recipients.go). The function sends a typed request, each counterparty responds with its component data, and the initiator assembles the final composite identity.
Create initiator and responder views in the integration layer (e.g. integration/token/fungible/views/mynew.go) following the pattern in boolpolicy.go:
PolicyOwnedBalanceView).Register all view factories and responders in the integration SDK (integration/token/fungible/sdk/party/sdk.go).
sig_test.go pattern) and for EscrowAuth.IsMine (auth_test.go pattern).integration/token/fungible/tests.go + the relevant dlog_test.go Describe block, following TestPolicyOR / TestPolicyAND.| # | What | Where |
|---|---|---|
| 1 | Reserve type tag | token/driver/wallet.go |
| 2 | Wire format + Wrap/Unwrap | token/services/identity/mynew/ |
| 3 | Verifier + Deserializer | same package; register in both drivers |
| 4 | Signature format + JoinSignatures | same package |
| 5 | EscrowAuth + register in drivers | token/services/ttx/mynew/auth.go |
| 6 | OwnerWallet wrapper | token/services/ttx/mynew/wallet.go |
| 7 | Recipient-negotiation protocol | token/services/ttx/recipients.go |
| 8 | Integration views + SDK registration | integration/token/fungible/views/mynew.go |
| 9 | Unit + integration tests | alongside each new file |