Skip to content

Commit fa9246b

Browse files
committed
Fix: "<inheritdocs/>" -> "<inheritdoc/>"
1 parent e6c70f7 commit fa9246b

File tree

13 files changed

+52
-52
lines changed

13 files changed

+52
-52
lines changed

CompactCryptoGroupAlgebra.OpenSsl/BigNumber.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public BigInteger ToBigInteger()
141141
return integer;
142142
}
143143

144-
/// <inheritdocs />
144+
/// <inheritdoc />
145145
public override bool Equals(object? obj)
146146
{
147147
var other = obj as BigNumber;
@@ -153,13 +153,13 @@ public override bool Equals(object? obj)
153153
return (BigNumberHandle.Compare(this.Handle, other.Handle) == 0);
154154
}
155155

156-
/// <inheritdocs />
156+
/// <inheritdoc />
157157
public override int GetHashCode()
158158
{
159159
return ToBigInteger().GetHashCode();
160160
}
161161

162-
/// <inheritdocs />
162+
/// <inheritdoc />
163163
public override string ToString()
164164
{
165165
return ToBigInteger().ToString();
@@ -268,7 +268,7 @@ public BigNumber ModReciprocal(BigNumber modulo)
268268
}
269269
}
270270

271-
/// <inheritdocs />
271+
/// <inheritdoc />
272272
public void Dispose()
273273
{
274274
Dispose(disposing: true);

CompactCryptoGroupAlgebra.OpenSsl/EllipticCurves/ECPoint.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public bool IsAtInfinity
8585
}
8686
}
8787

88-
/// <inheritdocs />
88+
/// <inheritdoc />
8989
public override bool Equals(object? obj)
9090
{
9191
ECPoint? other = obj as ECPoint;
@@ -97,7 +97,7 @@ public override bool Equals(object? obj)
9797
}
9898
}
9999

100-
/// <inheritdocs />
100+
/// <inheritdoc />
101101
public override int GetHashCode()
102102
{
103103
return new BigInteger(ToBytes()).GetHashCode();
@@ -145,7 +145,7 @@ private void Dispose(bool disposing)
145145

146146
}
147147

148-
/// <inheritdocs />
148+
/// <inheritdoc />
149149
public void Dispose()
150150
{
151151
Dispose(disposing: true);

CompactCryptoGroupAlgebra.OpenSsl/EllipticCurves/EllipticCurveAlgebra.cs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public EllipticCurveAlgebra(EllipticCurveID curveId)
4646

4747
private BigPrime? _order;
4848

49-
/// <inheritdocs />
49+
/// <inheritdoc />
5050
public BigPrime Order
5151
{
5252
get
@@ -74,7 +74,7 @@ public BigPrime Order
7474
}
7575
}
7676

77-
/// <inheritdocs />
77+
/// <inheritdoc />
7878
public ECPoint Generator
7979
{
8080
get
@@ -86,7 +86,7 @@ public ECPoint Generator
8686

8787
private ECPoint? _neutralElement;
8888

89-
/// <inheritdocs />
89+
/// <inheritdoc />
9090
public ECPoint NeutralElement
9191
{
9292
get
@@ -108,7 +108,7 @@ public ECPoint NeutralElement
108108

109109
private BigInteger? _cofactor;
110110

111-
/// <inheritdocs />
111+
/// <inheritdoc />
112112
public BigInteger Cofactor
113113
{
114114
get
@@ -132,7 +132,7 @@ public BigInteger Cofactor
132132
}
133133
}
134134

135-
/// <inheritdocs />
135+
/// <inheritdoc />
136136
public int ElementBitLength
137137
{
138138
get
@@ -141,7 +141,7 @@ public int ElementBitLength
141141
}
142142
}
143143

144-
/// <inheritdocs />
144+
/// <inheritdoc />
145145
public int OrderBitLength
146146
{
147147
get
@@ -150,7 +150,7 @@ public int OrderBitLength
150150
}
151151
}
152152

153-
/// <inheritdocs />
153+
/// <inheritdoc />
154154
public ECPoint Add(ECPoint left, ECPoint right)
155155
{
156156
using (var ctx = BigNumberContextHandle.Create())
@@ -161,13 +161,13 @@ public ECPoint Add(ECPoint left, ECPoint right)
161161
}
162162
}
163163

164-
/// <inheritdocs />
164+
/// <inheritdoc />
165165
public ECPoint FromBytes(byte[] buffer)
166166
{
167167
return ECPoint.CreateFromBytes(Handle, buffer);
168168
}
169169

170-
/// <inheritdocs />
170+
/// <inheritdoc />
171171
public ECPoint GenerateElement(SecureBigNumber index)
172172
{
173173
using (var ctx = BigNumberContextHandle.CreateSecure())
@@ -178,7 +178,7 @@ public ECPoint GenerateElement(SecureBigNumber index)
178178
}
179179
}
180180

181-
/// <inheritdocs />
181+
/// <inheritdoc />
182182
public bool IsPotentialElement(ECPoint element)
183183
{
184184
using (var ctx = BigNumberContextHandle.Create())
@@ -187,7 +187,7 @@ public bool IsPotentialElement(ECPoint element)
187187
}
188188
}
189189

190-
/// <inheritdocs />
190+
/// <inheritdoc />
191191
public bool IsSafeElement(ECPoint element)
192192
{
193193
if (!IsPotentialElement(element)) return false;
@@ -203,7 +203,7 @@ public bool IsSafeElement(ECPoint element)
203203
return true;
204204
}
205205

206-
/// <inheritdocs />
206+
/// <inheritdoc />
207207
public ECPoint MultiplyScalar(ECPoint e, SecureBigNumber k)
208208
{
209209
using (var ctx = BigNumberContextHandle.CreateSecure())
@@ -214,7 +214,7 @@ public ECPoint MultiplyScalar(ECPoint e, SecureBigNumber k)
214214
}
215215
}
216216

217-
/// <inheritdocs />
217+
/// <inheritdoc />
218218
public ECPoint Negate(ECPoint element)
219219
{
220220
using (var ctx = BigNumberContextHandle.Create())
@@ -225,13 +225,13 @@ public ECPoint Negate(ECPoint element)
225225
}
226226
}
227227

228-
/// <inheritdocs />
228+
/// <inheritdoc />
229229
public byte[] ToBytes(ECPoint element)
230230
{
231231
return element.ToBytes(GroupPointEncoding);
232232
}
233233

234-
/// <inheritdocs />
234+
/// <inheritdoc />
235235
public (SecureBigNumber, ECPoint) GenerateRandomElement(RandomNumberGenerator randomNumberGenerator)
236236
{
237237
using (var keyHandle = ECKeyHandle.Create())
@@ -261,7 +261,7 @@ public byte[] ToBytes(ECPoint element)
261261
}
262262
}
263263

264-
/// <inheritdocs />
264+
/// <inheritdoc />
265265
public void Dispose()
266266
{
267267
Dispose(true);
@@ -276,7 +276,7 @@ private void Dispose(bool disposing)
276276
}
277277
}
278278

279-
/// <inheritdocs />
279+
/// <inheritdoc />
280280
public override bool Equals(object? obj)
281281
{
282282
EllipticCurveAlgebra? other = obj as EllipticCurveAlgebra;
@@ -288,7 +288,7 @@ public override bool Equals(object? obj)
288288
}
289289
}
290290

291-
/// <inheritdocs />
291+
/// <inheritdoc />
292292
public override int GetHashCode()
293293
{
294294
int hashCode = 55837;

CompactCryptoGroupAlgebra.OpenSsl/Internal/Native/BigNumberContextHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ internal BigNumberContextHandle(IntPtr handle, bool ownsHandle) : base(ownsHandl
8585
}
8686
}
8787

88-
/// <inheritdocs />
88+
/// <inheritdoc />
8989
protected override bool ReleaseHandle()
9090
{
9191
Debug.Assert(!IsInvalid);

CompactCryptoGroupAlgebra.OpenSsl/Internal/Native/BigNumberHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ private BigNumberHandle(IntPtr handle, bool ownsHandle) : base(ownsHandle)
236236
}
237237
}
238238

239-
/// <inheritdocs />
239+
/// <inheritdoc />
240240
protected override bool ReleaseHandle()
241241
{
242242
Debug.Assert(!IsInvalid);

CompactCryptoGroupAlgebra.OpenSsl/Internal/Native/BigNumberMontgomeryContextHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private BigNumberMontgomeryContextHandle(IntPtr handle, bool ownsHandle) : base(
6161
}
6262
}
6363

64-
/// <inheritdocs />
64+
/// <inheritdoc />
6565
protected override bool ReleaseHandle()
6666
{
6767
Debug.Assert(!IsInvalid);

CompactCryptoGroupAlgebra.OpenSsl/Internal/Native/ECGroupHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ internal ECGroupHandle(IntPtr handle, bool ownsHandle) : base(ownsHandle)
158158
}
159159
}
160160

161-
/// <inheritdocs />
161+
/// <inheritdoc />
162162
protected override bool ReleaseHandle()
163163
{
164164
Debug.Assert(!IsInvalid);

CompactCryptoGroupAlgebra.OpenSsl/Internal/Native/ECKeyHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ internal ECKeyHandle(IntPtr handle, bool ownsHandle) : base(ownsHandle)
115115
}
116116
}
117117

118-
/// <inheritdocs />
118+
/// <inheritdoc />
119119
protected override bool ReleaseHandle()
120120
{
121121
Debug.Assert(!IsInvalid);

CompactCryptoGroupAlgebra.OpenSsl/Internal/Native/ECPointHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ internal ECPointHandle(IntPtr handle, bool ownsHandle) : base(ownsHandle)
206206
}
207207
}
208208

209-
/// <inheritdocs />
209+
/// <inheritdoc />
210210
protected override bool ReleaseHandle()
211211
{
212212
EC_POINT_clear_free(this.handle);

CompactCryptoGroupAlgebra.OpenSsl/Internal/Native/NativeHandle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ protected NativeHandle()
2121
}
2222
#endif // FEATURE_CORECLR
2323

24-
/// <inheritdocs />
24+
/// <inheritdoc />
2525
public override bool IsInvalid
2626
{
2727
get

0 commit comments

Comments
 (0)