/// <summary> /// Generates the Public Key for this Private Key /// </summary> /// <param name="secretKey">My Private Key</param> internal PublicKey(SecretKey secretKey) { KeyValue = AlgorithmService.GetPublicKey(secretKey: secretKey.KeyValue); Uid = Guid.NewGuid(); }