/// <summary>
 /// Constructor for the ManagedProviderForCurve25519 class
 /// </summary>
 /// <param name="type"></param>
 public ManagedProviderForCurve25519(string type)
 {
     curve = org.whispersystems.curve25519.Curve25519.getInstance(type);
 }
 /// <summary>
 /// ctor
 /// </summary>
 /// <param name="type">Such as Curve25519.CSHARP or Curve25519.BEST</param>
 public Curve25519ManagedProvider(string type)
 {
     _curve = org.whispersystems.curve25519.Curve25519.getInstance(type);
 }