Closed Hiller closed 6 months ago
I have custom transforms for XML, but those custom transforms are not in CryptoHelpers
I guess there are should be a method like CryptoHelpers.Add<T,TImplementation>(string urn) so we'll be able to register and use custom transforms like
CryptoHelpers.Add<T,TImplementation>(string urn)
CryptoHelpers.Add<Transform,MyCustomTransform>(urn)
You can use CryptoHelpers.SetKnownName<CustomTransform>("urn:custom-transform").
CryptoHelpers.SetKnownName<CustomTransform>("urn:custom-transform")
I have custom transforms for XML, but those custom transforms are not in CryptoHelpers
I guess there are should be a method like
CryptoHelpers.Add<T,TImplementation>(string urn)
so we'll be able to register and use custom transforms likeCryptoHelpers.Add<Transform,MyCustomTransform>(urn)