28 lines
		
	
	
		
			623 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			623 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace Jose\Component\Signature;
 | |
| 
 | |
| use Jose\Component\Core\AlgorithmManagerFactory;
 | |
| 
 | |
| class JWSBuilderFactory
 | |
| {
 | |
|     public function __construct(
 | |
|         private readonly AlgorithmManagerFactory $signatureAlgorithmManagerFactory
 | |
|     ) {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * This method creates a JWSBuilder using the given algorithm aliases.
 | |
|      *
 | |
|      * @param string[] $algorithms
 | |
|      */
 | |
|     public function create(array $algorithms): JWSBuilder
 | |
|     {
 | |
|         $algorithmManager = $this->signatureAlgorithmManagerFactory->create($algorithms);
 | |
| 
 | |
|         return new JWSBuilder($algorithmManager);
 | |
|     }
 | |
| }
 |