ECDSACipher constructor

ECDSACipher(
  1. InputECDSACipher input
)

Implementation

ECDSACipher(InputECDSACipher input) : super(input.parent) {
  // ECC key parsing (placeholder, to be implemented)
  // Use CryptoUtils or PointyCastle for PEM parsing if available
  throw UnimplementedError('ECC key parsing not yet implemented');
}