<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 20/12/2016 10:17, Daniel Dörrhöfer
      wrote:<br>
    </div>
    <blockquote
      cite="mid:695770ec-d137-d8d9-85fe-e9de04804205@openmailbox.org"
      type="cite">
      <pre wrap="">I have tested this implementation with the -no-symbols / -n option
turned on and have noticed that the password contains a single quote (').

e.G. 7S3b4wJ4R7'RfWGagkhaM95'6

To reproduce this, you have to generate a couple of passwords.</pre>
    </blockquote>
    <p>Good catch :-)</p>
    <p>
      <meta charset="utf-8">
    </p>
    <div class="add" style="color: green; font-family: "Source Code Pro", "Courier New", monospace; font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: pre; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">+CHARACTER_SET="${PASSWORD_STORE_CHARACTER_SET:-'[:graph:]'}"</div>
    <div class="add" style="color: green; font-family: "Source Code Pro", "Courier New", monospace; font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: pre; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">+CHARACTER_SET_NO_SYMBOLS="${PASSWORD_STORE_CHARACTER_SET_NO_SYMBOLS:-'[:alnum:]'}"</div>
    <br>
    has spurious quotes. Try changing to:<br>
    <br>
    <meta charset="utf-8">
    <div class="add" style="color: green; font-family: "Source Code Pro", "Courier New", monospace; font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: pre; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">+CHARACTER_SET="${PASSWORD_STORE_CHARACTER_SET:-[:graph:]}"</div>
    <div class="add" style="color: green; font-family: "Source Code Pro", "Courier New", monospace; font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: pre; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">+CHARACTER_SET_NO_SYMBOLS="${PASSWORD_STORE_CHARACTER_SET_NO_SYMBOLS:-[:alnum:]}"</div>
    <br class="Apple-interchange-newline">
    <br class="Apple-interchange-newline">
  </body>
</html>