This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# for Emacs: -*- coding: utf-8 -*- | |
# Runic (range U16AO – U16FF) | |
# Letters | |
# Elder Futhark | |
<Multi_key> <R> <E> <F> : "ᚠ" U16A0 # RUNIC LETTER FEHU FEOH FE F | |
<Multi_key> <R> <E> <f> : "ᚠ" U16A0 # RUNIC LETTER FEHU FEOH FE F | |
<Multi_key> <R> <e> <F> : "ᚠ" U16A0 # RUNIC LETTER FEHU FEOH FE F | |
<Multi_key> <R> <e> <f> : "ᚠ" U16A0 # RUNIC LETTER FEHU FEOH FE F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Returns the hash digest of a single cell or an array of cells. | |
* | |
* @param {"Sample text"} input - Text to hash. | |
* @param {"MD5"} algorithm - (optional) Hashing algorithm to use. Choose between MD2, MD5, SHA-1, SHA-256, SHA-384 and SHA-512. Defaults to MD5. | |
* @customfunction | |
*/ | |
function HASH(input, algorithm) { | |
input = input || "" // what, nothing? FINE, you get nothing. Jerks. | |
if (input.map) { // check if it's an array, and make sure that the same damn algorithm is used. |