react / wstein / node_modules / browserify / node_modules / crypto-browserify / node_modules / browserify-sign / algos.js
80540 views'use strict'1exports['RSA-SHA224'] = exports.sha224WithRSAEncryption = {2sign: 'rsa',3hash: 'sha224',4id: new Buffer('302d300d06096086480165030402040500041c', 'hex')5}6exports['RSA-SHA256'] = exports.sha256WithRSAEncryption = {7sign: 'rsa',8hash: 'sha256',9id: new Buffer('3031300d060960864801650304020105000420', 'hex')10}11exports['RSA-SHA384'] = exports.sha384WithRSAEncryption = {12sign: 'rsa',13hash: 'sha384',14id: new Buffer('3041300d060960864801650304020205000430', 'hex')15}16exports['RSA-SHA512'] = exports.sha512WithRSAEncryption = {17sign: 'rsa',18hash: 'sha512',19id: new Buffer('3051300d060960864801650304020305000440', 'hex')20}21exports['RSA-SHA1'] = {22sign: 'rsa',23hash: 'sha1',24id: new Buffer('3021300906052b0e03021a05000414', 'hex')25}26exports['ecdsa-with-SHA1'] = {27sign: 'ecdsa',28hash: 'sha1',29id: new Buffer('', 'hex')30}31exports.DSA = exports['DSA-SHA1'] = exports['DSA-SHA'] = {32sign: 'dsa',33hash: 'sha1',34id: new Buffer('', 'hex')35}36exports['DSA-SHA224'] = exports['DSA-WITH-SHA224'] = {37sign: 'dsa',38hash: 'sha224',39id: new Buffer('', 'hex')40}41exports['DSA-SHA256'] = exports['DSA-WITH-SHA256'] = {42sign: 'dsa',43hash: 'sha256',44id: new Buffer('', 'hex')45}46exports['DSA-SHA384'] = exports['DSA-WITH-SHA384'] = {47sign: 'dsa',48hash: 'sha384',49id: new Buffer('', 'hex')50}51exports['DSA-SHA512'] = exports['DSA-WITH-SHA512'] = {52sign: 'dsa',53hash: 'sha512',54id: new Buffer('', 'hex')55}56exports['DSA-RIPEMD160'] = {57sign: 'dsa',58hash: 'rmd160',59id: new Buffer('', 'hex')60}61exports['RSA-RIPEMD160'] = exports.ripemd160WithRSA = {62sign: 'rsa',63hash: 'rmd160',64id: new Buffer('3021300906052b2403020105000414', 'hex')65}66exports['RSA-MD5'] = exports.md5WithRSAEncryption = {67sign: 'rsa',68hash: 'md5',69id: new Buffer('3020300c06082a864886f70d020505000410', 'hex')70}717273