Skip to content

Commit

Permalink
Named SHA1 to SHA-1 and adjusted help IDs to new Name
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorben Groos committed Oct 30, 2020
1 parent ad2d8f7 commit ad1ccfd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<description>Dies ist die FlexiProvider Implementierung des HMacMD5 Hashes. In der Algorithmen-Perspektive stehen Ihnen noch weitere Einstellungsmöglichkeiten für diesen Algorithmus zur Verfügung.</description>
<topic href="PLUGINS_ROOT/org.jcryptool.core.help/$nl$/help/users/general/perspective_algorithm.html" label="Algorithmen-Perspektive"/>
</context>
<context id="SHA1Wizard" title="SHA-1 Zufallszahlengenerators">
<context id="SHA-1Wizard" title="SHA-1 Zufallszahlengenerators">
<description>Dies ist die FlexiProvider Implementierung des SHA-1 Zufallszahlengenerators. In der Algorithmen-Perspektive stehen Ihnen noch weitere Einstellungsmöglichkeiten für diesen Algorithmus zur Verfügung.</description>
<topic href="PLUGINS_ROOT/org.jcryptool.core.help/$nl$/help/users/general/perspective_algorithm.html" label="Algorithmen-Perspektive"/>
</context>
Expand All @@ -36,7 +36,7 @@
<description>Dies ist die FlexiProvider Implementierung des MD5 Hashes. In der Algorithmen-Perspektive stehen Ihnen noch weitere Einstellungsmöglichkeiten für diesen Algorithmus zur Verfügung.</description>
<topic href="PLUGINS_ROOT/org.jcryptool.core.help/$nl$/help/users/general/perspective_algorithm.html" label="Algorithmen-Perspektive"/>
</context>
<context id="SHAWizard" title="SHA-256 Hash">
<context id="SHA-256Wizard" title="SHA-256 Hash">
<description>Dies ist die FlexiProvider Implementierung des SHA-256 Hashes. In der Algorithmen-Perspektive stehen Ihnen noch weitere Einstellungsmöglichkeiten für diesen Algorithmus zur Verfügung.</description>
<topic href="PLUGINS_ROOT/org.jcryptool.core.help/$nl$/help/users/general/perspective_algorithm.html" label="Algorithmen-Perspektive"/>
</context>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<description>This is the FlexiProvider implementation of the HMacMD5 message digest. The Algorithm Perspective does provide even more configuration possibilities for this algorithm.</description>
<topic href="PLUGINS_ROOT/org.jcryptool.core.help/$nl$/help/users/general/perspective_algorithm.html" label="Algorithm Perspective"/>
</context>
<context id="SHA1Wizard" title="SHA-1 random number generator">
<context id="SHA-1Wizard" title="SHA-1 random number generator">
<description>This is the FlexiProvider implementation of the SHA-1 random number generator. The Algorithm Perspective does provide even more configuration possibilities for this algorithm.</description>
<topic href="PLUGINS_ROOT/org.jcryptool.core.help/$nl$/help/users/general/perspective_algorithm.html" label="Algorithm Perspective"/>
</context>
Expand All @@ -36,7 +36,7 @@
<description>This is the FlexiProvider implementation of the MD5 hash. The Algorithm Perspective does provide even more configuration possibilities for this algorithm.</description>
<topic href="PLUGINS_ROOT/org.jcryptool.core.help/$nl$/help/users/general/perspective_algorithm.html" label="Algorithm Perspective"/>
</context>
<context id="SHAWizard" title="SHA-256 hash">
<context id="SHA-256Wizard" title="SHA-256 hash">
<description>This is the FlexiProvider implementation of the SHA-256 hash. The Algorithm Perspective does provide even more configuration possibilities for this algorithm.</description>
<topic href="PLUGINS_ROOT/org.jcryptool.core.help/$nl$/help/users/general/perspective_algorithm.html" label="Algorithm Perspective"/>
</context>
Expand Down
4 changes: 2 additions & 2 deletions org.jcryptool.crypto.flexiprovider.integrator/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
point="org.jcryptool.core.operations.algorithms_cmd">
<algorithm_cmd
class="org.jcryptool.crypto.flexiprovider.integrator.messagedigest.sha.Sha"
contextHelpId="org.jcryptool.crypto.flexiprovider.integrator.SHAWizard"
contextHelpId="org.jcryptool.crypto.flexiprovider.integrator.SHA-256Wizard"
handlerClass="org.jcryptool.crypto.flexiprovider.integrator.messagedigest.sha.ShaHandler"
id="org.jcryptool.crypto.flexiprovider.integrator.messagedigest.sha"
isFlexiProviderAlgorithm="true"
Expand Down Expand Up @@ -122,7 +122,7 @@
point="org.jcryptool.core.operations.algorithms_cmd">
<algorithm_cmd
class="org.jcryptool.crypto.flexiprovider.integrator.prng.sha1.Sha1"
contextHelpId="org.jcryptool.crypto.flexiprovider.integrator.SHA1Wizard"
contextHelpId="org.jcryptool.crypto.flexiprovider.integrator.SHA-1Wizard"
handlerClass="org.jcryptool.crypto.flexiprovider.integrator.prng.sha1.Sha1Handler"
id="org.jcryptool.crypto.flexiprovider.integrator.prng.sha1"
isFlexiProviderAlgorithm="true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class Sha1Handler extends IntegratorHandler {
@Override
protected String getFlexiProviderAlgorithmName() {return "SHA1PRNG";} //$NON-NLS-1$
@Override
protected String getReadableAlgorithmName() {return "SHA1";} //$NON-NLS-1$
protected String getReadableAlgorithmName() {return "SHA-1";} //$NON-NLS-1$
@Override
protected String getShowKey() {return null;}
}

0 comments on commit ad1ccfd

Please sign in to comment.