本文整理汇总了Golang中github.com/cathalgarvey/go-minilock/taber.Keys.Decrypt方法的典型用法代码示例。如果您正苦于以下问题:Golang Keys.Decrypt方法的具体用法?Golang Keys.Decrypt怎么用?Golang Keys.Decrypt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cathalgarvey/go-minilock/taber.Keys
的用法示例。
在下文中一共展示了Keys.Decrypt方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: DecryptDecryptInfo
// DecryptDecryptInfo is used to extract a decryptInfo object by attempting decryption
// with a given recipientKey. This must be attempted for each decryptInfo in the header
// until one works or none work, as miniLock deliberately provides no indication of
// intended recipients.
func DecryptDecryptInfo(diEnc, nonce []byte, ephemPubkey, recipientKey *taber.Keys) (*DecryptInfoEntry, error) {
plain, err := recipientKey.Decrypt(diEnc, nonce, ephemPubkey)
if err != nil {
return nil, ErrCannotDecrypt
}
di := new(DecryptInfoEntry)
err = json.Unmarshal(plain, di)
if err != nil {
return nil, err
}
return di, nil
}
示例2: ExtractFileInfo
// ExtractFileInfo pulls out the fileInfo object from the decryptInfo object,
// authenticating encryption from the sender.
func (di *DecryptInfoEntry) ExtractFileInfo(nonce []byte, recipientKey *taber.Keys) (*FileInfo, error) {
// Return on failure: minilockutils.DecryptionError
senderPubkey, err := di.SenderPubkey()
if err != nil {
return nil, err
}
plain, err := recipientKey.Decrypt(di.FileInfoEnc, nonce, senderPubkey)
if err != nil {
return nil, ErrCannotDecrypt
}
fi := new(FileInfo)
err = json.Unmarshal(plain, fi)
if err != nil {
return nil, err
}
return fi, nil
}