Example #1
0
		public Point(Group group) 
			: base(Native.EC_POINT_new(group.Handle), true) {
			this.group = group;
		}
Example #2
0
		internal Point(Group group, IntPtr ptr, bool owner) 
			: base(ptr, owner) { 
			this.group = group;
		}