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.
		
		
		
		
		
			
		
			
				
					
					
						
							15 lines
						
					
					
						
							433 B
						
					
					
				
			
		
		
	
	
							15 lines
						
					
					
						
							433 B
						
					
					
				| var jwt = require('../');
 | |
| 
 | |
| describe('issue 70 - public key start with BEING PUBLIC KEY', function () {
 | |
| 
 | |
|   it('should work', function (done) {
 | |
|     var fs = require('fs');
 | |
|     var cert_pub = fs.readFileSync(__dirname + '/rsa-public.pem');
 | |
|     var cert_priv = fs.readFileSync(__dirname + '/rsa-private.pem');
 | |
| 
 | |
|     var token = jwt.sign({ foo: 'bar' }, cert_priv, { algorithm: 'RS256'});
 | |
| 
 | |
|     jwt.verify(token, cert_pub, done);
 | |
|   });
 | |
| 
 | |
| }); |