本文整理匯總了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
}