You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							13 lines
						
					
					
						
							500 B
						
					
					
				
			
		
		
	
	
							13 lines
						
					
					
						
							500 B
						
					
					
				var ciphers = require('./encrypter') | 
						|
var deciphers = require('./decrypter') | 
						|
var modes = require('./modes/list.json') | 
						|
 | 
						|
function getCiphers () { | 
						|
  return Object.keys(modes) | 
						|
} | 
						|
 | 
						|
exports.createCipher = exports.Cipher = ciphers.createCipher | 
						|
exports.createCipheriv = exports.Cipheriv = ciphers.createCipheriv | 
						|
exports.createDecipher = exports.Decipher = deciphers.createDecipher | 
						|
exports.createDecipheriv = exports.Decipheriv = deciphers.createDecipheriv | 
						|
exports.listCiphers = exports.getCiphers = getCiphers
 | 
						|
 |