我如何putStrLn Data.ByteString.Internal.ByteString?

时间:2012-11-03 01:44:42

标签: string haskell io output

我正在学习haskell,并决定尝试编写一些小测试程序来使用Haskell代码和使用模块。目前我正在尝试使用第一个参数使用Cypto.PasswordStore创建密码哈希。为了测试我的程序,我试图从第一个参数创建一个哈希,然后将哈希打印到屏幕。

import Crypto.PasswordStore
import System.Environment

main = do
    args <- getArgs
    putStrLn (makePassword (head args) 12)

我收到以下错误:

testmakePassword.hs:8:19:
    Couldn't match expected type `String'
            with actual type `IO Data.ByteString.Internal.ByteString'
    In the return type of a call of `makePassword'
    In the first argument of `putStrLn', namely
      `(makePassword (head args) 12)'
    In a stmt of a 'do' block: putStrLn (makePassword (head args) 12)

我一直在使用以下链接作为参考,但我现在只是试错而无济于事。 http://hackage.haskell.org/packages/archive/bytestring/0.9.0.4/doc/html/Data-ByteString-Internal.html http://hackage.haskell.org/packages/archive/pwstore-purehaskell/2.1/doc/html/Crypto-PasswordStore.html

2 个答案:

答案 0 :(得分:5)

您尚未导入ByteString,因此它尝试使用putStrLn的String版本。 我为toBS转化提供了String->ByteString

尝试

import Crypto.PasswordStore
import System.Environment
import qualified Data.ByteString.Char8 as B

toBS = B.pack

main = do
    args <- getArgs
    makePassword (toBS (head args)) 12 >>= B.putStrLn

答案 1 :(得分:4)

你必须以不同的方式做两件事。首先,makePassword在IO中,因此您需要将结果绑定到名称,然后将名称传递给IO函数。其次,您需要从Data.ByteString

导入IO功能
import Crypto.PasswordStore
import System.Environment
import qualified Data.ByteString as B

main = do
    args <- getArgs
    pwd <- makePassword (B.pack $ head args) 12
    B.putStrLn pwd

或者,如果您不在其他地方使用密码结果,可以使用bind直接连接这两个函数:

main = do
    args <- getArgs
    B.putStrLn =<< makePassword (B.pack $ head args) 12