diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2017-08-10 17:42:10 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-02-21 19:50:16 +0100 |
commit | c023a51e604fb16f64f93a9ffb59bf18515d9033 (patch) | |
tree | e6c2782db9062757595bd3343e76c32896543d23 /netwerk | |
parent | d8598c1ed3264de0e7b6de21f62d4d5125177677 (diff) | |
download | uxp-c023a51e604fb16f64f93a9ffb59bf18515d9033.tar.gz |
Crypto Services (utils) - Support for SHA224-512
Diffstat (limited to 'netwerk')
-rw-r--r-- | netwerk/base/nsICryptoHash.idl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/netwerk/base/nsICryptoHash.idl b/netwerk/base/nsICryptoHash.idl index cd865a3a9d..ddd3103af7 100644 --- a/netwerk/base/nsICryptoHash.idl +++ b/netwerk/base/nsICryptoHash.idl @@ -10,7 +10,7 @@ interface nsIInputStream; * This interface provides crytographic hashing algorithms. */ -[scriptable, uuid(1e5b7c43-4688-45ce-92e1-77ed931e3bbe)] +[scriptable, uuid(0a248513-dfa7-4474-8777-8c452d60dd04)] interface nsICryptoHash : nsISupports { /** @@ -25,6 +25,7 @@ interface nsICryptoHash : nsISupports const short SHA256 = 4; /* String value: "sha256" */ const short SHA384 = 5; /* String value: "sha384" */ const short SHA512 = 6; /* String value: "sha512" */ + const short SHA224 = 7; /* String value: "sha224" */ /** * Initialize the hashing object. This method may be |