Returns the field size in bits. Note: For prime finite
field ECFieldFp, size of prime p in bits is returned.
For characteristic 2 finite field ECFieldF2m, m is returned.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[],["The `ECField` interface represents an elliptic curve (EC) finite field, which all specialized EC fields must implement. It defines a single method, `getFieldSize()`, which returns the field's size in bits. For prime finite fields (`ECFieldFp`), this is the size of the prime, and for characteristic 2 finite fields (`ECFieldF2m`), it is the value 'm'. These classes `ECFieldFp` and `ECFieldF2m` are known indirect subclasses of the interface.\n"]]