mirror of
https://github.com/nsacyber/HIRS.git
synced 2025-02-22 18:22:37 +00:00
Add KeyName (subjectKeyIdentifier) and KeyValue (public key) to KeyInfo element Implement --privateKeyFile and --publicCertificate in JCommander Implement -v in JCommander. Clean up unit tests. Implement support for PKCS1 in CredentialParser class. Truncate # symbol after parsing subject key identifier Close input streams in CredentialParser class Closes #237
11 lines
337 B
HTML
11 lines
337 B
HTML
<?xml version="1.0"?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output indent="no" />
|
|
<xsl:strip-space elements="*"/>
|
|
<xsl:template match="@*|node()">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="@*|node()"/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|