Stay organized with collections
Save and categorize content based on your preferences.
DSAKey
interface DSAKey
The interface to a DSA public or private key. DSA (Digital Signature Algorithm) is defined in NIST's FIPS-186.
Summary
Public methods |
abstract DSAParams! |
Returns the DSA-specific key parameters.
|
Public methods
getParams
abstract fun getParams(): DSAParams!
Returns the DSA-specific key parameters. These parameters are never secret.
Return |
DSAParams! |
the DSA-specific key parameters. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[[["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 2025-02-10 UTC."],[],[],null,["# DSAKey\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nDSAKey\n======\n\n```\ninterface DSAKey\n```\n\n|--------------------------------------|\n| [java.security.interfaces.DSAKey](#) |\n\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [DSAPrivateKey](/reference/kotlin/java/security/interfaces/DSAPrivateKey), [DSAPublicKey](/reference/kotlin/java/security/interfaces/DSAPublicKey) |---------------------------------------------------------------------------|----------------------------------------------| | [DSAPrivateKey](/reference/kotlin/java/security/interfaces/DSAPrivateKey) | The standard interface to a DSA private key. | | [DSAPublicKey](/reference/kotlin/java/security/interfaces/DSAPublicKey) | The interface to a DSA public key. | |\n\nThe interface to a DSA public or private key. DSA (Digital Signature Algorithm) is defined in NIST's FIPS-186.\n\nSummary\n-------\n\n| Public methods ||\n|-----------------------------------------------------------------------------|------------------------------------------------------------------------|\n| abstract [DSAParams](/reference/kotlin/java/security/interfaces/DSAParams)! | [getParams](#getParams())`()` Returns the DSA-specific key parameters. |\n\nPublic methods\n--------------\n\n### getParams\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun getParams(): DSAParams!\n```\n\nReturns the DSA-specific key parameters. These parameters are never secret.\n\n| Return ||\n|--------------------------------------------------------------------|----------------------------------|\n| [DSAParams](/reference/kotlin/java/security/interfaces/DSAParams)! | the DSA-specific key parameters. |\n\n**See Also**\n\n- [java.security.interfaces.DSAParams](/reference/kotlin/java/security/interfaces/DSAParams)"]]