Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hallo,

ich versuche eine Signatur von einen String zu erstellen.

Mein bisheriger Quellcode sieht volgendermaßen aus.



public static String signatur(String data){

		String result=new String();

	    //Laden der Schlsseldatenbank

	      KeyStore ks;

	      ks = KeyStore.getInstance("JKS");


	      FileInputStream ksin = new FileInputStream(KEYSTORE);

	      ks.load(ksin, KSPASS);

	      ksin.close();


	      Key key = ks.getKey(ALIAS, KEYPASS);

	      //Signatur-Objekt erstellen


	      Signature signature = Signature.getInstance("SHA1withRSA");


	      signature.initSign((PrivateKey)key);


	      signature.update(data.getBytes(),0,data.length());



	      byte[] werte=signature.sign();




Nun zu meinen Problem: Ich soll die Signatur in einen String umwandeln. Leider bekomme ich aus dem byte Array keinen brauchbaren String. So etwas wie

new String(werte);

funktioniert leider nicht.

Mache ich irgend etwas Grundlegend falsch?

  • Autor

in etwa so:

l2weiO66/q97MI+QzPQUz5+M27QtccagmI2IaVi3U+Jl8bHgxU390QOXduwph7

PhoBfMba8ZZKZnJNkz0KmLr03E/Qm9JKbmvzzjG+XUKrB5ZebexKnTUbyhNkQ6

vntLkiZUs9gm/4aRwiUDDSqJJhftXJK2KgO6yecQ9JSkTPQ=

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.