signSignedAttributes method

Future<Uint8List> signSignedAttributes(
  1. Uint8List signedAttrsDer,
  2. Uint8List signedAttrsDigest
)

Optional hook for algorithms that sign signedAttrs bytes directly (ex.: ECDSA/EdDSA em APIs que fazem hashing internamente).

Implementation

Future<Uint8List> signSignedAttributes(
  Uint8List signedAttrsDer,
  Uint8List signedAttrsDigest,
) {
  return signDigest(signedAttrsDigest);
}