DecryptFileName returns a decrypted file name
(encryptedFileName string)
| 774 | |
| 775 | // DecryptFileName returns a decrypted file name |
| 776 | func (f *Fs) DecryptFileName(encryptedFileName string) (string, error) { |
| 777 | return f.cipher.DecryptFileName(encryptedFileName) |
| 778 | } |
| 779 | |
| 780 | // computeHashWithNonce takes the nonce and encrypts the contents of |
| 781 | // src with it, and calculates the hash given by HashType on the fly |
no outgoing calls